結果
問題 | No.1726 [Cherry 3rd Tune B] ジャマイカビアポン |
ユーザー | nawawan |
提出日時 | 2021-10-29 23:04:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,667 bytes |
コンパイル時間 | 2,508 ms |
コンパイル使用メモリ | 216,612 KB |
実行使用メモリ | 13,632 KB |
最終ジャッジ日時 | 2024-10-07 12:42:26 |
合計ジャッジ時間 | 11,103 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,632 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 3 ms
6,820 KB |
testcase_09 | AC | 6 ms
6,816 KB |
testcase_10 | AC | 8 ms
6,820 KB |
testcase_11 | AC | 27 ms
6,816 KB |
testcase_12 | WA | - |
testcase_13 | AC | 3 ms
6,816 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef unsigned long long ull; int main(){ int N, M; cin >> N >> M; vector<long long> P(N); for(int i = 0; i < N; i++) cin >> P[i]; vector<long long> a(N), b(N), c(M), d(M); unordered_map<ull, int> m; unordered_set<ull> s; ull INF = 2000000000; for(int i = 0; i < N; i++) { cin >> a[i] >> b[i]; a[i] *= 2; b[i] *= 2; m[(a[i] + INF) * INF + b[i]] = i; } for(int i = 0; i < M; i++) { cin >> c[i] >> d[i]; c[i] *= 2; d[i] *= 2; } int ans = 0; for(int i = 0; i < M; i++){ for(int j = 0; j < N; j++){ long long mx = (a[j] + c[i]) / 2; long long my = (b[j] + d[i]) / 2; if(s.count((mx + INF) * INF + my)) continue; s.insert((mx + INF) * INF + my); int res = 0, res2 = 0, res3 = 0, res4 = 0; for(int k = 0; k < M; k++){ long long r = mx * 2 - c[k]; long long l = my * 2 - d[k]; if(m.count((r + INF) * INF + l)) { res += P[m[(r + INF) * INF + l]]; } if(m.count((r + INF) * INF + d[k])){ res2 += P[m[(r + INF) * INF + d[k]]]; } if(m.count((c[k] + INF) * INF + l)){ res3 += P[m[(c[k] + INF) * INF + l]]; } if(m.count((c[k] + INF) * INF + d[k])){ res4 += P[m[(c[k] + INF) * INF + d[k]]]; } } ans = max({ans, res, res2, res3, res4}); } } cout << ans << endl; }