結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー 👑 KazunKazun
提出日時 2021-08-20 18:12:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,293 bytes
コンパイル時間 868 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 13,632 KB
最終ジャッジ日時 2024-10-07 08:52:59
合計ジャッジ時間 5,720 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 20 ms
6,820 KB
testcase_05 AC 27 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 5 ms
6,816 KB
testcase_10 AC 6 ms
6,820 KB
testcase_11 AC 14 ms
6,816 KB
testcase_12 AC 80 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 TLE -
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 #

#include<iostream>
#include<vector>
#include<set>

using namespace std;

int max(int a, int b){return a>b? a: b;}

int main(){
    int N,M;
    cin >> N >> M;

    vector<int> P(N);
    for (int i=0; i<N; i++) cin >> P[i];

    vector<pair<int,int>> S;
    int a,b;
    for (int i=0; i<N; i++){
        cin >> a >> b;
        S.push_back(make_pair(a,b));
    }

    vector<pair<int,int>> T;
    set<pair<int,int>> T_set;
    int c,d;
    for (int j=0; j<M; j++){
        cin >> c >> d;
        T.push_back(make_pair(c,d));
        T_set.insert(make_pair(c,d));
    }

    int X=0,Y=0;
    int u,v,s,t,x,y;
    vector<pair<int,int>> V{make_pair(1,1), make_pair(1,-1), make_pair(-1,1), make_pair(-1,-1)};
    for (int i=0; i<N; i++){
        a=S[i].first; b=S[i].second;

        for (int j=0; j<M; j++){
            c=T[j].first; d=T[j].second;

            for (auto q: V){
                s=q.first; t=q.second;
                u=c-s*a; v=d-t*b;

                Y=0;
                for (int k=0; k<N; k++){
                    x=S[k].first; y=S[k].second;
                    if (T_set.count(make_pair(s*x+u, t*y+v))){
                        Y+=P[k];
                    }
                }
                X=max(X,Y);
            }
        }
    }

    cout << X << endl;

    return 0;
}
0