結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー hitonanodehitonanode
提出日時 2021-10-29 22:33:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 315 ms / 3,000 ms
コード長 1,511 bytes
コンパイル時間 1,265 ms
コンパイル使用メモリ 106,996 KB
実行使用メモリ 23,228 KB
最終ジャッジ日時 2024-10-07 12:11:42
合計ジャッジ時間 7,213 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 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 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 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 5 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 62 ms
7,916 KB
testcase_15 AC 179 ms
13,932 KB
testcase_16 AC 242 ms
15,216 KB
testcase_17 AC 171 ms
13,684 KB
testcase_18 AC 146 ms
12,908 KB
testcase_19 AC 221 ms
14,708 KB
testcase_20 AC 77 ms
8,048 KB
testcase_21 AC 210 ms
14,256 KB
testcase_22 AC 106 ms
8,944 KB
testcase_23 AC 110 ms
9,068 KB
testcase_24 AC 315 ms
22,904 KB
testcase_25 AC 311 ms
22,904 KB
testcase_26 AC 310 ms
23,160 KB
testcase_27 AC 306 ms
23,228 KB
testcase_28 AC 309 ms
23,160 KB
testcase_29 AC 300 ms
23,032 KB
testcase_30 AC 298 ms
22,904 KB
testcase_31 AC 305 ms
23,032 KB
testcase_32 AC 307 ms
23,028 KB
testcase_33 AC 310 ms
23,156 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 183 ms
23,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <utility>
#include <vector>
using namespace std;
using pint = pair<int, int>;
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define REP(i, n) FOR(i,0,n)
template <typename T> bool chmax(T &m, const T q) { return m < q ? (m = q, true) : false; }
template <typename T1, typename T2> pair<T1, T2> operator+(const pair<T1, T2> &l, const pair<T1, T2> &r) { return make_pair(l.first + r.first, l.second + r.second); }
template <typename T1, typename T2> pair<T1, T2> operator-(const pair<T1, T2> &l, const pair<T1, T2> &r) { return make_pair(l.first - r.first, l.second - r.second); }


int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N, M;
    cin >> N >> M;
    vector<int> P(N);
    for (auto &x : P) cin >> x;
    vector<pint> AB(N), CD(M);
    for (auto &[x, y] : AB) cin >> x >> y;
    for (auto &[x, y] : CD) cin >> x >> y;

    int ret = 0;

    REP(t, 2) {
        REP(tt, 2) {
            vector<pair<pint, int>> vs;
            REP(i, N) REP(j, M) {
                vs.emplace_back(CD[j] - AB[i], P[i]);
            }
            sort(vs.begin(), vs.end());
            int c = 0;
            REP(k, vs.size()) {
                c += vs[k].second;
                chmax(ret, c);
                if (k + 1 < int(vs.size()) and vs[k].first != vs[k + 1].first) c = 0;
            }

            REP(i, N) AB[i].second *= -1;
        }
        REP(i, N) AB[i].first *= -1;
    }
    cout << ret << '\n';
}
0