結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー tatyamtatyam
提出日時 2021-10-29 02:57:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,713 ms / 3,000 ms
コード長 792 bytes
コンパイル時間 3,997 ms
コンパイル使用メモリ 299,972 KB
実行使用メモリ 55,380 KB
最終ジャッジ日時 2024-10-07 09:20:26
合計ジャッジ時間 27,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,816 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,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 4 ms
6,816 KB
testcase_12 AC 6 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 127 ms
14,272 KB
testcase_15 AC 547 ms
28,032 KB
testcase_16 AC 858 ms
31,824 KB
testcase_17 AC 531 ms
28,636 KB
testcase_18 AC 378 ms
24,928 KB
testcase_19 AC 726 ms
33,368 KB
testcase_20 AC 146 ms
15,180 KB
testcase_21 AC 643 ms
28,372 KB
testcase_22 AC 206 ms
16,684 KB
testcase_23 AC 237 ms
16,804 KB
testcase_24 AC 1,507 ms
52,400 KB
testcase_25 AC 1,535 ms
49,156 KB
testcase_26 AC 1,513 ms
48,472 KB
testcase_27 AC 1,529 ms
49,524 KB
testcase_28 AC 1,476 ms
52,320 KB
testcase_29 AC 1,422 ms
54,124 KB
testcase_30 AC 1,497 ms
55,380 KB
testcase_31 AC 1,470 ms
52,608 KB
testcase_32 AC 1,514 ms
47,576 KB
testcase_33 AC 1,482 ms
54,416 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 2,713 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
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(auto [s, t] : vector<pair<int, int>>{{1, 1}, {1, -1}, {-1, 1}, {-1, -1}}){
        __gnu_pbds::cc_hash_table<uint64_t, int> cnt;
        for(int i = 0; i < N; i++){
            auto [a, b] = A[i];
            for(auto [c, d] : B) cnt[uint64_t(c - s * a) << 32 ^ (d - t * b)] += P[i];
        }
        for(auto [key, val] : cnt) chmax(ans, val);
    }
    cout << ans << endl;
}
0