結果
問題 | No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩 |
ユーザー | vkgainz |
提出日時 | 2021-06-12 09:46:49 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,427 bytes |
コンパイル時間 | 3,179 ms |
コンパイル使用メモリ | 166,272 KB |
実行使用メモリ | 173,092 KB |
最終ジャッジ日時 | 2024-12-16 01:11:50 |
合計ジャッジ時間 | 91,808 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,644 KB |
testcase_01 | AC | 2 ms
28,836 KB |
testcase_02 | AC | 2 ms
13,636 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
13,640 KB |
testcase_05 | AC | 2 ms
31,392 KB |
testcase_06 | AC | 2 ms
13,636 KB |
testcase_07 | WA | - |
testcase_08 | AC | 5 ms
13,644 KB |
testcase_09 | AC | 3 ms
30,116 KB |
testcase_10 | WA | - |
testcase_11 | AC | 6 ms
30,112 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 3 ms
13,644 KB |
testcase_15 | AC | 12 ms
28,836 KB |
testcase_16 | AC | 5 ms
13,640 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 61 ms
36,644 KB |
testcase_20 | AC | 197 ms
13,636 KB |
testcase_21 | WA | - |
testcase_22 | AC | 74 ms
13,640 KB |
testcase_23 | AC | 133 ms
54,948 KB |
testcase_24 | AC | 125 ms
13,636 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 98 ms
54,824 KB |
testcase_28 | TLE | - |
testcase_29 | AC | 1,918 ms
65,792 KB |
testcase_30 | WA | - |
testcase_31 | TLE | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | WA | - |
testcase_38 | TLE | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | WA | - |
testcase_48 | TLE | - |
testcase_49 | TLE | - |
testcase_50 | TLE | - |
testcase_51 | TLE | - |
testcase_52 | TLE | - |
testcase_53 | TLE | - |
testcase_54 | TLE | - |
testcase_55 | TLE | - |
testcase_56 | TLE | - |
testcase_57 | TLE | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | RE | - |
testcase_64 | RE | - |
testcase_65 | RE | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | AC | 2 ms
6,816 KB |
testcase_71 | AC | 2 ms
6,820 KB |
testcase_72 | AC | 2 ms
6,820 KB |
testcase_73 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; void read(vector<int> &v, int sz) { for(int i = 0; i < sz; i++) { cin >> v[i]; } } int main() { int K, L, M, N; long long S; cin >> K >> L >> M >> N >> S; vector<int> A(K), B(L), C(M), D(N); read(A, K); read(B, L); read(C, M); read(D, N); map<long long, int> fl, fr; for(int i = 0; i < K; i++) for(int j = 0; j < L; j++) ++fl[A[i] * B[j]]; for(int i = 0; i < M; i++) for(int j = 0; j < N; j++) ++fr[C[i] * D[j]]; int sum = 0; for(auto [a, b] : fr) { sum += b; fr[a] = sum; } long long T; long long lo = -1e17, hi = 1e17; for(int j = 0; j < 60; j++) { long long mid = (lo + hi) / 2; long long num = 0LL; for(auto [a, b] : fl) { if(a > 0) { long long look = mid / a; if(mid < 0) look = (mid - a + 1) / a; auto it = fr.upper_bound(look); if(it == fr.begin()) continue; --it; num += b * 1LL * it->second; } else if(a < 0) { long long look; if(mid > 0) look = - (mid / (- a)); else look = (-mid + a - 1) / (-a); //cout << mid << " " << look << "\n"; auto it = fr.lower_bound(look); num += b * 1LL * sum; if(it == fr.begin()) continue; --it; //cout << mid << " " << it->first << " " << it->second << "\n"; num -= b * 1LL * it->second; } else { if(mid >= 0) num += b * 1LL * sum; } } if(num < S) lo = mid + 1; else hi = mid; } T = lo; long long left, right; pair<int, int> x, y; for(auto [a, b] : fl) { if(T % a == 0 && fr.find(T / a) != fr.end()) left = a, right = T / a; } for(int i = 0; i < K; i++) { for(int j = 0; j < L; j++) { if(A[i] * 1LL * B[j] == left) x = {A[i], B[j]}; } } for(int i = 0; i < M; i++) { for(int j = 0; j < N; j++) { if(C[i] * 1LL * D[j] == right) y = {C[i], D[j]}; } } cout << T << "\n"; cout << x.first << " " << x.second << " " << y.first << " " << y.second << "\n"; }