結果

問題 No.2643 Many Range Sums Problems
ユーザー てんぷらてんぷら
提出日時 2024-02-19 23:18:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,175 ms / 8,000 ms
コード長 2,080 bytes
コンパイル時間 5,314 ms
コンパイル使用メモリ 308,832 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 03:01:35
合計ジャッジ時間 15,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 236 ms
6,820 KB
testcase_04 AC 176 ms
6,816 KB
testcase_05 AC 92 ms
6,816 KB
testcase_06 AC 298 ms
6,820 KB
testcase_07 AC 289 ms
6,816 KB
testcase_08 AC 253 ms
6,820 KB
testcase_09 AC 292 ms
6,820 KB
testcase_10 AC 246 ms
6,816 KB
testcase_11 AC 86 ms
6,820 KB
testcase_12 AC 1,173 ms
6,816 KB
testcase_13 AC 361 ms
6,816 KB
testcase_14 AC 261 ms
6,816 KB
testcase_15 AC 259 ms
6,816 KB
testcase_16 AC 202 ms
6,816 KB
testcase_17 AC 230 ms
6,820 KB
testcase_18 AC 69 ms
6,816 KB
testcase_19 AC 10 ms
6,816 KB
testcase_20 AC 34 ms
6,816 KB
testcase_21 AC 8 ms
6,820 KB
testcase_22 AC 150 ms
6,816 KB
testcase_23 AC 278 ms
6,816 KB
testcase_24 AC 557 ms
6,820 KB
testcase_25 AC 544 ms
6,820 KB
testcase_26 AC 41 ms
6,816 KB
testcase_27 AC 46 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 288 ms
6,816 KB
testcase_31 AC 298 ms
6,816 KB
testcase_32 AC 1,173 ms
6,820 KB
testcase_33 AC 1,175 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
using ll = long long;
using ull = unsigned long long;
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
#define REP(i, m, n) for(int i = (int)(m); i < (int)(n); i++)
using namespace std;
using namespace atcoder;
using mint = modint998244353;
const int inf = 1000000007;
const ll longinf = 1ll << 60;

ll floor(ll x, ll m) {
    ll r = (x % m + m) % m;
    return (x - r) / m;
}

ll ceil(ll x, ll m) {
    ll r = (x % m + m) % m;
    return (x - r) / m + (r > 0);
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int n, k;
    cin >> n >> k;
    vector<int> r(n);
    vector<ll> a(n);
    rep(i, n) cin >> r[i] >> a[i];
    rep(i, n) {
        vector<ll> coef(n), ret(n), sc(n + 1), sr(n + 1);
        bool ok = true;
        for(int j = n - 1; j >= 0; j--) {
            sc[j] += sc[j + 1];
            sr[j] += sr[j + 1];
            if(j == i) {
                coef[j] = 1;
                sc[j] += 1;
                continue;
            }
            ll rsum = sr[j] - sr[r[j]];
            ll csum = sc[j] - sc[r[j]];
            coef[j] = -csum;
            ret[j] = -rsum + a[j];
            sc[j] += coef[j];
            sr[j] += ret[j];
        }
        // rep(i, n) cout << coef[i] << " ";
        // cout << endl;
        // rep(i, n) cout << ret[i] << " ";
        // cout << endl;
        ll mi = 0, ma = k;
        rep(j, n) {
            if(coef[j] == 0) {
                if(ret[j] < 0 || ret[j] > k) {
                    ok = false;
                }
            }
            if(coef[j] < 0) {
                mi = max(mi, ceil(ret[j] - k, abs(coef[j])));
                ma = min(ma, floor(ret[j], abs(coef[j])));
            }
            if(coef[j] > 0) {
                mi = max(mi, ceil(-ret[j], abs(coef[j])));
                ma = min(ma, floor(-ret[j] + k, abs(coef[j])));
            }
        }
        // cout << mi << " " << ma << endl;
        if(mi > ma) {
            ok = false;
        }
        cout << (ok ? "Yes" : "No") << endl;
    }
    return 0;
}
0