結果
問題 | No.1008 Bench Craftsman |
ユーザー | startcpp |
提出日時 | 2020-03-06 23:02:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,622 bytes |
コンパイル時間 | 686 ms |
コンパイル使用メモリ | 65,640 KB |
実行使用メモリ | 8,264 KB |
最終ジャッジ日時 | 2024-10-14 09:33:15 |
合計ジャッジ時間 | 4,129 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
7,624 KB |
testcase_08 | AC | 10 ms
7,624 KB |
testcase_09 | AC | 80 ms
6,984 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 129 ms
8,012 KB |
testcase_16 | WA | - |
testcase_17 | AC | 130 ms
8,260 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
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 | WA | - |
testcase_29 | WA | - |
ソースコード
//やりたいことは何となく分かるけど、詰めるのが難しい。 #include <iostream> #define int long long #define rep(i, n) for(i = 0; i < n; i++) using namespace std; int n, m; int a[100000]; int x[100000], w[100000]; //区間[l, r)にa, a+d, a+2d, …を足す //・s1[]では, a, a, a…の足し算を担当(1回階差) //・s2[]では, 0, d, 2d…の足し算を担当(2回階差) void add(int s1[], int s2[], int l, int r, int a, int d) { if (r - l <= 0) { return; } s1[l] += a; s1[r] -= a; if (r - l <= 1) { return; } s2[l + 1] += d; s2[r] -= (r - l) * d; } bool check(int c) { int i; static int s1[100001]; static int s2[100001]; static int s[100000]; rep(i, n + 1) s1[i] = 0; rep(i, n + 1) s2[i] = 0; rep(i, n) s[i] = 0; if (c == 0) { int sw = 0; rep(i, m) sw += w[i]; rep(i, n) if (sw >= a[i]) return false; return true; } rep(i, m) { int l = x[i] - (w[i] + c - 1) / c + 1; if (l < 0) l = 0; int r = x[i] + (w[i] + c - 1) / c; if (r > n) r = n; add(s1, s2, l, x[i], w[i] - c * (x[i] - l), c); add(s1, s2, x[i], r, w[i], -c); } rep(i, n) s1[i + 1] += s1[i]; rep(i, n) s2[i + 1] += s2[i]; rep(i, n) s2[i + 1] += s2[i]; rep(i, n) s[i] = s1[i] + s2[i]; rep(i, n) { if (s[i] >= a[i]) return false; } return true; } signed main() { int i; cin >> n >> m; rep(i, n) { cin >> a[i]; } rep(i, m) { cin >> x[i] >> w[i]; x[i]--; } int ng = -1, ok = 114514, mid; while (ok - ng >= 2) { mid = (ok + ng) / 2; if (check(mid)) ok = mid; else ng = mid; } if (ok >= 114514) cout << "-1" << endl; else cout << ok << endl; return 0; }