結果
問題 | No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩 |
ユーザー | SSRS |
提出日時 | 2021-01-22 22:35:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,213 bytes |
コンパイル時間 | 2,284 ms |
コンパイル使用メモリ | 179,160 KB |
実行使用メモリ | 13,272 KB |
最終ジャッジ日時 | 2024-06-08 16:15:02 |
合計ジャッジ時間 | 10,823 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | AC | 167 ms
13,148 KB |
testcase_49 | AC | 138 ms
13,272 KB |
testcase_50 | AC | 191 ms
13,140 KB |
testcase_51 | AC | 169 ms
13,140 KB |
testcase_52 | AC | 118 ms
13,148 KB |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | AC | 59 ms
12,256 KB |
testcase_59 | AC | 57 ms
12,124 KB |
testcase_60 | AC | 59 ms
12,128 KB |
testcase_61 | AC | 57 ms
12,124 KB |
testcase_62 | AC | 58 ms
12,124 KB |
testcase_63 | AC | 11 ms
8,832 KB |
testcase_64 | AC | 11 ms
8,960 KB |
testcase_65 | AC | 11 ms
8,832 KB |
testcase_66 | AC | 11 ms
8,832 KB |
testcase_67 | AC | 11 ms
8,832 KB |
testcase_68 | AC | 2 ms
5,376 KB |
testcase_69 | AC | 2 ms
5,376 KB |
testcase_70 | AC | 2 ms
5,376 KB |
testcase_71 | AC | 2 ms
5,376 KB |
testcase_72 | AC | 2 ms
5,376 KB |
testcase_73 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const long long INF = 1000000000000000000; int main(){ int K, L, M, N; long long S; cin >> K >> L >> M >> N >> S; vector<int> A(K); for (int i = 0; i < K; i++){ cin >> A[i]; } vector<int> B(L); for (int i = 0; i < L; i++){ cin >> B[i]; } vector<int> C(M); for (int i = 0; i < M; i++){ cin >> C[i]; } vector<int> D(N); for (int i = 0; i < N; i++){ cin >> D[i]; } vector<long long> X(K * L); for (int i = 0; i < K; i++){ for (int j = 0; j < L; j++){ X[i * L + j] = A[i] * B[j]; } } vector<long long> Y(M * N); for (int i = 0; i < M; i++){ for (int j = 0; j < N; j++){ Y[i * N + j] = C[i] * D[j]; } } sort(Y.begin(), Y.end()); vector<long long> pos, neg; int zero = 0; for (int i = 0; i < K * L; i++){ if (X[i] > 0){ pos.push_back(X[i]); } if (X[i] < 0){ neg.push_back(X[i]); } if (X[i] == 0){ zero++; } } sort(pos.begin(), pos.end(), greater<int>()); sort(neg.begin(), neg.end()); int pcnt = pos.size(); int ncnt = neg.size(); long long tv = -INF; long long fv = INF; while (fv - tv > 1){ long long mid = (tv + fv) / 2; long long cnt = 0; if (mid > 0){ cnt += (long long) zero * (N * M); } int pc = 0; for (int i = 0; i < pcnt; i++){ while (pc < N * M){ if (pos[i] * Y[pc] < mid){ pc++; } else { break; } } cnt += pc; } int nc = 0; for (int i = 0; i < ncnt; i++){ while (nc < N * M){ if (neg[i] * Y[nc] >= mid){ nc++; } else { break; } } cnt += N * M - nc; } if (cnt < S){ tv = mid; } else { fv = mid; } } cout << tv << endl; for (int i = 0; i < K * L; i++){ int id = -1; if (X[i] >= 0){ int tv2 = -1; int fv2 = N * M; while (fv2 - tv2 > 1){ int mid2 = (tv2 + fv2) / 2; if (X[i] * Y[mid2] <= tv){ tv2 = mid2; } else { fv2 = mid2; } } if (tv2 != -1){ if (X[i] * Y[tv2] == tv){ id = tv2; } } } else { int tv2 = N * M; int fv2 = -1; while (tv2 - fv2 > 1){ int mid2 = (tv2 + fv2) / 2; if (X[i] * Y[mid2] <= tv){ tv2 = mid2; } else { fv2 = mid2; } } if (tv2 != N * M){ if (X[i] * Y[tv2] == tv){ id = tv2; } } } if (id != -1){ bool ok1 = false; for (int j = 0; j < K; j++){ for (int k = 0; k < L; k++){ if (A[j] * B[k] == X[i]){ cout << A[j] << ' ' << B[k] << ' '; ok1 = true; break; } } if (ok1){ break; } } bool ok2 = false; for (int j = 0; j < M; j++){ for (int k = 0; k < N; k++){ if (C[j] * D[k] == Y[id]){ cout << C[j] << ' ' << D[k] << endl; ok2 = true; break; } } if (ok2){ break; } } assert(ok1 && ok2); break; } } }