結果
問題 | No.691 E869120 and Constructing Array 5 |
ユーザー | Min_25 |
提出日時 | 2018-05-19 00:09:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,821 bytes |
コンパイル時間 | 1,195 ms |
コンパイル使用メモリ | 102,144 KB |
実行使用メモリ | 144,892 KB |
最終ジャッジ日時 | 2024-06-28 14:50:03 |
合計ジャッジ時間 | 5,617 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#include <cstdio> #include <cassert> #include <cmath> #include <cstring> #include <iostream> #include <algorithm> #include <vector> #include <map> #include <set> #include <functional> #include <stack> #include <queue> #include <tuple> #define getchar getchar_unlocked #define putchar putchar_unlocked #define _rep(_1, _2, _3, _4, name, ...) name #define rep2(i, n) rep3(i, 0, n) #define rep3(i, a, b) rep4(i, a, b, 1) #define rep4(i, a, b, c) for (int i = int(a); i < int(b); i += int(c)) #define rep(...) _rep(__VA_ARGS__, rep4, rep3, rep2, _)(__VA_ARGS__) using namespace std; using i64 = long long; using u8 = unsigned char; using u32 = unsigned; using u64 = unsigned long long; using f80 = long double; int get_int() { int c, n; while ((c = getchar()) < '0'); n = c - '0'; while ((c = getchar()) >= '0') n = n * 10 + (c - '0'); return n; } f80 fractional_part(int N) { f80 v = sqrtl(N); int iv = v; i64 numer = N - iv * iv; return numer / (v + iv); } void solve() { const int base = 1234567; const int K = 2400; vector<int> ns(K); rep(i, K) ns[i] = rand() % base; vector< pair<f80, int> > values; vector<f80> fs; rep(i, K) fs.push_back(fractional_part(ns[i])); rep(i, K) rep(j, i, K) { f80 a = fs[i] + fs[j]; if (a >= 1) a -= 1; values.emplace_back(a, i + j * K); } sort(values.begin(), values.end()); int Q; scanf("%d", &Q); rep(i, Q) { f80 f; scanf("%Lf", &f); f80 target = f - (i64) f;; int tail = lower_bound( values.begin(), values.end(), make_pair(target, 100000000)) - values.begin(); if (tail == (int) values.size()) --tail; int head = 0; f80 best = 1e-6; i64 mask = 0; while (head < (int) values.size() && tail >= 0) { f80 s = values[head].first + values[tail].first; if (s < target) { if (target - s < best) { best = target - s; mask = values[head].second + i64(values[tail].second) * K * K; } head++; } else { if (s - target < best) { best = s - target; mask = values[head].second + i64(values[tail].second) * K * K; } --tail; } if (best < 1e-10) break; } // fprintf(stderr, "%.16Lf\n", best); // fprintf(stderr, "%.16Lf\n", t); // fprintf(stderr, "%.16Lf\n", f); assert(best < 1e-10); f80 t = 0; printf("%d", 5); rep(_, 4) { int j = mask % K; mask /= K; t += sqrtl(ns[j]); printf(" %d", ns[j]); } int integer_part = (int) round(f - t); t += integer_part; assert(integer_part >= 0); printf(" %d\n", integer_part * integer_part); assert((f - t) < 1e-9); } } int main() { clock_t beg = clock(); solve(); clock_t end = clock(); fprintf(stderr, "%.3f sec\n", double(end - beg) / CLOCKS_PER_SEC); return 0; }