結果
問題 | No.2643 Many Range Sums Problems |
ユーザー | ぷら |
提出日時 | 2024-02-19 23:19:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,279 bytes |
コンパイル時間 | 1,589 ms |
コンパイル使用メモリ | 141,656 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-29 03:02:38 |
合計ジャッジ時間 | 5,194 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 127 ms
6,820 KB |
testcase_08 | AC | 116 ms
6,816 KB |
testcase_09 | WA | - |
testcase_10 | AC | 114 ms
6,820 KB |
testcase_11 | AC | 87 ms
6,820 KB |
testcase_12 | WA | - |
testcase_13 | AC | 197 ms
6,816 KB |
testcase_14 | AC | 117 ms
6,820 KB |
testcase_15 | AC | 121 ms
6,816 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 62 ms
6,816 KB |
testcase_19 | AC | 8 ms
6,816 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
6,820 KB |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 127 ms
6,816 KB |
testcase_31 | AC | 128 ms
6,820 KB |
testcase_32 | AC | 130 ms
6,820 KB |
testcase_33 | AC | 131 ms
6,816 KB |
ソースコード
#include <string.h> #include <algorithm> #include <array> #include <bitset> #include <cassert> #include <cfloat> #include <climits> #include <cmath> #include <complex> #include <ctime> #include <deque> #include <fstream> #include <functional> #include <iomanip> #include <iostream> #include <iterator> #include <list> #include <map> #include <memory> #include <queue> #include <random> #include <set> #include <stack> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N,K; cin >> N >> K; vector<int>R(N); vector<long long>X(N); for(int i = 0; i < N; i++) { cin >> R[i] >> X[i]; } for(int i = 0; i < N; i++) { vector<long long>tmp1(N),tmp2(N+1); vector<int>f(N),f2(N+1); for(int j = N-1; j >= 0; j--) { if(i == j) { f[j] = 1; tmp2[j] = tmp2[j+1]; f2[j] = f2[j+1]+1; } else { long long sum1 = tmp2[j+1]-tmp2[R[j]]; int sum2 = f2[j+1]-tmp2[R[j]]; tmp1[j] = X[j]-sum1; if(sum2 == 1) { f[j] = 2; } if(sum2 == 2) { f[j] = 1; } tmp2[j] = tmp2[j+1]+tmp1[j]; f2[j] = f2[j+1]+f[j]; } } bool ok = true; long long mi = 0,mx = K; for(int j = 0; j < N; j++) { if(f[j] == 0) { if(0 <= tmp1[j] && tmp1[j] <= K) { //ok } else { ok = false; } } if(f[j] == 1) { if(tmp1[j] < 0) { mi = max(mi,-tmp1[j]); } mx = min(mx,K-tmp1[j]); } if(f[j] == 2) { if(tmp1[j] > K) { mi = max(mi,tmp1[j]-K); } mx = min(mx,tmp1[j]); } } if(mi <= mx && ok) { cout << "Yes" << "\n"; } else { cout << "No" << "\n"; } } }