結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー 👑 emthrmemthrm
提出日時 2021-10-29 21:45:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,701 bytes
コンパイル時間 2,454 ms
コンパイル使用メモリ 219,184 KB
実行使用メモリ 43,648 KB
最終ジャッジ日時 2024-04-30 17:37:17
合計ジャッジ時間 49,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 9 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 315 ms
12,160 KB
testcase_15 AC 1,751 ms
26,880 KB
testcase_16 AC 2,545 ms
35,072 KB
testcase_17 AC 1,438 ms
26,112 KB
testcase_18 AC 1,063 ms
22,016 KB
testcase_19 AC 2,193 ms
31,744 KB
testcase_20 AC 419 ms
13,568 KB
testcase_21 AC 1,798 ms
30,080 KB
testcase_22 AC 738 ms
17,536 KB
testcase_23 AC 741 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,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 137 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int DY[]{1, 0, -1, 0}, DX[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1}, DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

int main() {
  int n, m; cin >> n >> m;
  vector<int> p(n), a(n), b(n), c(m), d(m);
  REP(i, n) cin >> p[i];
  REP(i, n) cin >> a[i] >> b[i];
  REP(i, m) cin >> c[i] >> d[i];
  int min_a = *min_element(ALL(a)), min_b = *min_element(ALL(b));
  REP(i, n) {
    a[i] -= min_a;
    b[i] -= min_b;
  }
  set<pair<ll, ll>> ball;
  REP(i, m) ball.emplace(c[i], d[i]);
  ll ans = 0;
  REP(bit, 1 << 2) {
    vector<ll> x(n), y(n);
    if (bit & 1) {
      REP(i, n) x[i] = -a[i];
    } else {
      REP(i, n) x[i] = a[i];
    }
    if (bit & 2) {
      REP(i, n) y[i] = -b[i];
    } else {
      REP(i, n) y[i] = b[i];
    }
    map<pair<ll, ll>, ll> score;
    REP(i, n) REP(j, m) {
      score[{c[j] - x[i], d[j] - y[i]}] += p[i];
    }
    for (auto [_, s] : score) chmax(ans, s);
  }
  cout << ans << '\n';
  return 0;
}
0