結果
問題 | No.1726 [Cherry 3rd Tune B] ジャマイカビアポン |
ユーザー | kotatsugame |
提出日時 | 2021-11-06 01:04:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 642 bytes |
コンパイル時間 | 897 ms |
コンパイル使用メモリ | 83,608 KB |
実行使用メモリ | 43,648 KB |
最終ジャッジ日時 | 2024-11-15 12:34:14 |
合計ジャッジ時間 | 50,658 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | AC | 4 ms
6,820 KB |
testcase_05 | AC | 5 ms
6,820 KB |
testcase_06 | AC | 3 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 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 | 5 ms
6,816 KB |
testcase_12 | AC | 9 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 437 ms
12,160 KB |
testcase_15 | AC | 1,716 ms
26,752 KB |
testcase_16 | AC | 2,532 ms
35,072 KB |
testcase_17 | AC | 1,652 ms
26,112 KB |
testcase_18 | AC | 1,241 ms
21,760 KB |
testcase_19 | AC | 2,156 ms
31,744 KB |
testcase_20 | AC | 542 ms
13,696 KB |
testcase_21 | AC | 2,017 ms
30,208 KB |
testcase_22 | AC | 887 ms
17,664 KB |
testcase_23 | AC | 940 ms
18,304 KB |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | AC | 2 ms
6,820 KB |
testcase_35 | AC | 2 ms
6,816 KB |
testcase_36 | AC | 2 ms
6,816 KB |
testcase_37 | AC | 2 ms
6,816 KB |
testcase_38 | AC | 144 ms
6,820 KB |
コンパイルメッセージ
main.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 10 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<map> using namespace std; int N,M; int P[800]; int X[800],Y[800],A[800],B[800]; int ans; main() { cin>>N>>M; for(int i=0;i<N;i++)cin>>P[i]; for(int i=0;i<N;i++)cin>>X[i]>>Y[i]; for(int i=0;i<M;i++)cin>>A[i]>>B[i]; map<pair<int,int>,int>mp; for(int x=0;x<2;x++) { for(int y=0;y<2;y++) { mp.clear(); for(int i=0;i<N;i++)for(int j=0;j<M;j++) { mp[make_pair(X[i]-A[j],Y[i]-B[j])]+=P[i]; } for(auto it=mp.begin();it!=mp.end();it++)ans=max(ans,it->second); for(int i=0;i<M;i++)B[i]=-B[i]; } for(int i=0;i<M;i++)A[i]=-A[i]; } cout<<ans<<endl; }