結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー tatyamtatyam
提出日時 2021-10-29 02:32:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,315 bytes
コンパイル時間 4,355 ms
コンパイル使用メモリ 271,604 KB
実行使用メモリ 814,208 KB
最終ジャッジ日時 2024-10-07 09:19:10
合計ジャッジ時間 7,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 8 ms
6,912 KB
testcase_06 AC 7 ms
6,528 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 7 ms
6,016 KB
testcase_09 AC 7 ms
6,656 KB
testcase_10 AC 8 ms
6,656 KB
testcase_11 AC 7 ms
7,040 KB
testcase_12 AC 8 ms
7,168 KB
testcase_13 AC 6 ms
5,888 KB
testcase_14 MLE -
testcase_15 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
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;
    static int cnt[1 << 28] = {};
    for(auto [s, t] : vector<pair<int, int>>{{1, 1}, {1, -1}, {-1, 1}, {-1, -1}}){
        for(int i = 0; i < N; i++){
            auto [a, b] = A[i];
            for(auto [c, d] : B){
                int key = c - s * a;
                key ^= key << 13;
                key ^= key >> 17;
                key ^= key << 5;
                key ^= d - t * b;
                chmax(ans, cnt[key & 0xfffffff] += P[i]);
            }
        }
        for(int i = 0; i < N; i++){
            auto [a, b] = A[i];
            for(auto [c, d] : B){
                int key = c - s * a;
                key ^= key << 13;
                key ^= key >> 17;
                key ^= key << 5;
                key ^= d - t * b;
                cnt[key & 0xfffffff] -= P[i];
            }
        }
    }
    cout << ans << endl;
}
0