結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー SSRSSSRS
提出日時 2021-10-29 21:51:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 937 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 176,276 KB
実行使用メモリ 48,512 KB
最終ジャッジ日時 2024-10-07 10:56:59
合計ジャッジ時間 26,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 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 AC 4 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 9 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 406 ms
12,160 KB
testcase_15 AC 1,799 ms
26,752 KB
testcase_16 AC 2,540 ms
34,816 KB
testcase_17 AC 1,580 ms
25,856 KB
testcase_18 AC 1,207 ms
21,888 KB
testcase_19 AC 2,171 ms
31,744 KB
testcase_20 AC 475 ms
13,440 KB
testcase_21 AC 1,959 ms
30,336 KB
testcase_22 AC 850 ms
17,408 KB
testcase_23 AC 865 ms
18,048 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 3 ms
6,824 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 147 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
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);
  for (int i = 0; i < N; i++){
    cin >> a[i] >> b[i];
  }
  vector<int> c(M), d(M);
  for (int i = 0; i < M; i++){
    cin >> c[i] >> d[i];
  }
  int ans = 0;
  for (int i = 0; i < 2; i++){
    for (int j = 0; j < 2; j++){
      map<pair<int, int>, int> mp2;
      for (int k = 0; k < M; k++){
        for (int l = 0; l < N; l++){
          int x;
          if (i == 0){
            x = a[l] - c[k];
          } else {
            x = a[l] + c[k];
          }
          int y;
          if (j == 0){
            y = b[l] - d[k];
          } else {
            y  = b[l] + d[k];
          }
          mp2[make_pair(x, y)] += P[l];
        }
      }
      for (auto p : mp2){
        ans = max(ans, p.second);
      }
    }
  }
  cout << ans << endl;
}
0