結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー cureskolcureskol
提出日時 2021-10-29 22:33:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,399 ms / 3,000 ms
コード長 587 bytes
コンパイル時間 2,132 ms
コンパイル使用メモリ 185,516 KB
実行使用メモリ 33,176 KB
最終ジャッジ日時 2024-10-07 12:13:17
合計ジャッジ時間 19,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 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 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 6 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 113 ms
9,432 KB
testcase_15 AC 544 ms
24,404 KB
testcase_16 AC 792 ms
28,636 KB
testcase_17 AC 522 ms
24,172 KB
testcase_18 AC 315 ms
16,384 KB
testcase_19 AC 788 ms
27,220 KB
testcase_20 AC 148 ms
10,720 KB
testcase_21 AC 860 ms
24,968 KB
testcase_22 AC 325 ms
14,360 KB
testcase_23 AC 322 ms
15,480 KB
testcase_24 AC 1,091 ms
31,628 KB
testcase_25 AC 1,105 ms
31,420 KB
testcase_26 AC 1,091 ms
33,076 KB
testcase_27 AC 1,062 ms
31,396 KB
testcase_28 AC 1,116 ms
32,916 KB
testcase_29 AC 1,399 ms
30,652 KB
testcase_30 AC 1,051 ms
33,176 KB
testcase_31 AC 1,112 ms
31,152 KB
testcase_32 AC 1,054 ms
32,892 KB
testcase_33 AC 1,051 ms
30,316 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 34 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:21:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   21 |     for(auto [xy,va]:mp)ans=max(ans,va);
      |              ^

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;

#define REP(i,n) for(int i=0;i<(n);i++)
using ll=long long;
const ll M=2e9+3;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  
  int n,m,ans=0;cin>>n>>m;
  vector<int> v(n),a(n),b(n),c(m),d(m);
  REP(i,n)cin>>v[i];
  REP(i,n)cin>>a[i]>>b[i];
  REP(j,m)cin>>c[j]>>d[j];
  REP(k,4){
    unordered_map<ll,int> mp;
    REP(i,n)REP(j,m)mp[ (a[i]-c[j])*M + (b[i]-d[j]) ]+=v[i];
    for(auto [xy,va]:mp)ans=max(ans,va);
    REP(i,n)a[i]*=-1;
    if(k==1)REP(i,n)b[i]*=-1;
  }
  cout<<ans<<endl;
}
  
0