結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー tatyamtatyam
提出日時 2021-10-16 19:30:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,380 ms / 3,000 ms
コード長 843 bytes
コンパイル時間 2,991 ms
コンパイル使用メモリ 256,856 KB
実行使用メモリ 33,148 KB
最終ジャッジ日時 2024-10-07 09:16:55
合計ジャッジ時間 22,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 5 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 125 ms
9,792 KB
testcase_15 AC 673 ms
24,596 KB
testcase_16 AC 929 ms
28,792 KB
testcase_17 AC 649 ms
24,356 KB
testcase_18 AC 380 ms
16,612 KB
testcase_19 AC 805 ms
26,960 KB
testcase_20 AC 149 ms
10,696 KB
testcase_21 AC 711 ms
25,852 KB
testcase_22 AC 256 ms
14,704 KB
testcase_23 AC 242 ms
15,564 KB
testcase_24 AC 1,242 ms
30,736 KB
testcase_25 AC 1,243 ms
32,972 KB
testcase_26 AC 1,309 ms
31,676 KB
testcase_27 AC 1,241 ms
31,748 KB
testcase_28 AC 1,315 ms
31,636 KB
testcase_29 AC 1,307 ms
31,604 KB
testcase_30 AC 1,365 ms
32,872 KB
testcase_31 AC 1,343 ms
33,148 KB
testcase_32 AC 1,358 ms
31,496 KB
testcase_33 AC 1,380 ms
31,756 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 33 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = int64_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<int, int>> A(N), B(M);
    for(auto& [a, b] : A) cin >> a >> b;
    for(auto& [c, d] : B) cin >> c >> d;
    for(int i = 0; i < 2; i++){
        for(auto& [a, b] : A) a = -a;
        for(int i = 0; i < 2; i++){
            for(auto& [a, b] : A) b = -b;
            unordered_map<i64, int> cnt;
            for(int i = 0; i < N; i++){
                auto [a, b] = A[i];
                for(auto [c, d] : B){
                    cnt[i64(a - c) << 32 ^ (b - d)] += P[i];
                }
            }
            for(auto [key, val] : cnt) chmax(ans, val);
        }
    }
    cout << ans << endl;
}
0