結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー 👑 KazunKazun
提出日時 2021-08-09 21:45:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,056 ms / 3,000 ms
コード長 1,007 bytes
コンパイル時間 1,782 ms
コンパイル使用メモリ 176,080 KB
実行使用メモリ 33,140 KB
最終ジャッジ日時 2024-10-07 08:44:52
合計ジャッジ時間 16,386 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 5 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 117 ms
9,528 KB
testcase_15 AC 519 ms
24,700 KB
testcase_16 AC 779 ms
28,672 KB
testcase_17 AC 515 ms
24,224 KB
testcase_18 AC 290 ms
16,616 KB
testcase_19 AC 671 ms
27,016 KB
testcase_20 AC 132 ms
10,564 KB
testcase_21 AC 591 ms
24,448 KB
testcase_22 AC 214 ms
14,572 KB
testcase_23 AC 229 ms
14,820 KB
testcase_24 AC 930 ms
30,428 KB
testcase_25 AC 1,050 ms
31,480 KB
testcase_26 AC 992 ms
33,016 KB
testcase_27 AC 1,056 ms
31,732 KB
testcase_28 AC 893 ms
31,488 KB
testcase_29 AC 951 ms
33,140 KB
testcase_30 AC 990 ms
31,744 KB
testcase_31 AC 912 ms
31,768 KB
testcase_32 AC 998 ms
31,740 KB
testcase_33 AC 929 ms
31,724 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 33 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll=long long;

int max(int a, int b){
    if (a>b) return a;
    else return b;
}

int main(){
    int N,M;
    cin >> N >> M;
    
    vector<int> P(N);
    for (int i=0; i<N; i++) cin >> P[i];
    
    vector<int> a(N),b(N),c(M),d(M);

    for (int i=0; i<N; i++) cin >> a[i] >> b[i];

    for (int j=0; j<M; j++) cin >> c[j] >> d[j];

    int X=0;
    int u,v,s,t,x,y;
    ll msk=1<<31;

    for (int s=0; s<=1; s++){
        for (int i=0; i<N; i++){
            a[i]=-a[i];
        }

        for (int t=0; t<=1; t++){
            for (int i=0; i<N; i++){
                b[i]=-b[i];
            }

            unordered_map<ll, int> mp;
            for (int i=0; i<N; i++){
                for (int j=0; j<M; j++){
                    u=c[j]-a[i]; v=d[j]-b[i];
                    mp[u*msk^v]+=P[i];
                }
            }
            
            for (auto x: mp) X=max(X,x.second);
        }
    }

    cout << X << endl;

    return 0;
}
0