structSum { int s, c, d; booloperator< (const Sum &T) { if (s != T.s) return s < T.s; if (c != T.c) return c < T.c; return d < T.d; } } sum[N];
int n, m;
intmain(){ cin >> n; for (int c = 0; c*c <= n; c++) for (int d = c; c*c+d*d <= n; d++) sum[m++] = {c*c+d*d, c, d};
sort(sum, sum+m); for (int a = 0; a*a <= n; a++) for (int b = 0; a*a+b*b <= n; b++) { int t = n-a*a-b*b; int l = 0, r = m-1; while (l < r) { int mid = l+r >> 1; if (sum[mid].s >= t) r = mid; else l = mid+1; } if (sum[l].s == t) { printf("%d %d %d %d\n", a, b, sum[l].c, sum[l].d); return0; } } }
// 哈希做法 #include<cstring> #include<iostream> #include<algorithm> #include<cmath> #include<unordered_map> #define fi first #define se second usingnamespace std; typedef pair<int, int> PII; constint N = 2500005;
int n; unordered_map<int, PII> S;
intmain(){ cin >> n; for (int c = 0; c*c <= n; c++) for (int d = c; c*c+d*d <= n; d++) { int t = c*c+d*d; if (S.count(t) == 0) S[t] = {c, d}; }
for (int a = 0; a*a <= n; a++) for (int b = 0; a*a+b*b <= n; b++) { int t = n-a*a-b*b; if (S.count(t)) { printf("%d %d %d %d\n", a, b, S[t].fi, S[t].se); return0; } } }
int n; intmain(){ cin >> n; for (int a = 0; a*a <= n; a++) for (int b = a; a*a+b*b <= n; b++) for (int c = b; a*a+b*b+c*c <= n; c++) { int t = n-a*a-b*b-c*c; int d = sqrt(t); if (d*d == t) { printf("%d %d %d %d\n", a, b, c, d); return0; } } }