結果
問題 | No.1726 [Cherry 3rd Tune B] ジャマイカビアポン |
ユーザー | tatyam |
提出日時 | 2021-10-19 08:10:08 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,919 bytes |
コンパイル時間 | 3,305 ms |
コンパイル使用メモリ | 263,072 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-10-07 09:17:10 |
合計ジャッジ時間 | 10,048 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 7 ms
6,816 KB |
testcase_05 | AC | 8 ms
6,820 KB |
testcase_06 | AC | 3 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 3 ms
6,820 KB |
testcase_10 | AC | 4 ms
6,816 KB |
testcase_11 | AC | 8 ms
6,816 KB |
testcase_12 | AC | 24 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2,071 ms
6,820 KB |
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; using u32 = uint32_t; using u64 = uint64_t; void chmax(int& a, int b){ if(a < b) a = b; } int main(){ int N, M; cin >> N >> M; vector<int> P(N); for(int& p : P) cin >> p; int ans = 0; vector<pair<u32, u32>> A(N), B(M); for(auto& [a, b] : A){ cin >> a >> b; a ^= 1u << 31; b ^= 1u << 31; } for(auto& [c, d] : B){ cin >> c >> d; c ^= 1u << 31; d ^= 1u << 31; } auto comp = [](pair<u32, u32> a, pair<u32, u32> b){ return *reinterpret_cast<u64*>(&a) < *reinterpret_cast<u64*>(&b); }; auto equal = [](pair<u32, u32> a, pair<u32, u32> b){ return *reinterpret_cast<u64*>(&a) == *reinterpret_cast<u64*>(&b); }; vector<pair<pair<u32, u32>, int>> sortA(N); for(int i = 0; i < N; i++) sortA[i] = {A[i], P[i]}; sort(sortA.begin(), sortA.end(), [&](auto& a, auto& b){ return comp(a.first, b.first); }); for(int i = 0; i < 2; i++){ for(auto& [c, d] : B) c = -c; for(int i = 0; i < 2; i++){ for(auto& [c, d] : B) d = -d; sort(B.begin(), B.end(), comp); // 移動量を固定 for(auto [a, b] : A) for(auto [c, d] : B){ const int dx = a - c, dy = b - d; auto sortB = B; for(auto& [c, d] : sortB){ c += dx; d += dy; } // ソートされていれば重なりが O(N + M) int score = 0, at = 0; for(auto [x, p] : sortA){ while(at < M && comp(sortB[at], x)) at++; if(at == M) break; if(equal(sortB[at], x)){ score += p; at++; } } chmax(ans, score); } } } cout << ans << endl; }