結果
問題 | No.1008 Bench Craftsman |
ユーザー | Strorkis |
提出日時 | 2020-03-08 11:31:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,890 bytes |
コンパイル時間 | 703 ms |
コンパイル使用メモリ | 72,444 KB |
実行使用メモリ | 6,016 KB |
最終ジャッジ日時 | 2024-11-06 22:42:52 |
合計ジャッジ時間 | 5,442 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 90 ms
5,888 KB |
testcase_06 | AC | 37 ms
5,888 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 35 ms
5,248 KB |
testcase_21 | AC | 33 ms
5,248 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 35 ms
5,572 KB |
testcase_26 | AC | 27 ms
5,248 KB |
testcase_27 | RE | - |
testcase_28 | AC | 49 ms
5,248 KB |
testcase_29 | AC | 66 ms
5,420 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; using ll = long long; int main() { cin.tie(0); ios::sync_with_stdio(false); int N, M; cin >> N >> M; vector<int> a(N); for (int i = 0; i < N; i++) cin >> a[i]; vector<int> x(N), w(N); int maxw = 0; for (int j = 0; j < M; j++) { cin >> x[j] >> w[j]; x[j]--; maxw = (maxw, w[j]); } int left = 0, right = maxw+1; while (left < right) { int c = (left + right) / 2; if (c == 0) { ll sumw = 0; for (int j = 0; j < M; j++) sumw += w[j]; bool flag = false; for (int i = 0; i < N; i++) { if (a[i] <= sumw) { flag = true; break; } } if (flag) left = c + 1; else right = c; continue; } vector<ll> ft(N); for (int j = 0; j < M; j++) { ft[max(0, x[j] - w[j]/c)] += w[j]; if (x[j] + w[j]/c + 1 < N) ft[x[j] + w[j]/c + 1] -= w[j]; } for (int i = 1; i < N; i++) ft[i] += ft[i - 1]; vector<ll> cd(N); for (int j = 0; j < M; j++) { cd[max(0, x[j] - w[j]/c)] += c; cd[x[j]] -= c; if (x[j] + 1 < N) cd[x[j] + 1] -= c; if (x[j] + w[j]/c + 1 < N) cd[x[j] + w[j]/c + 1] += c; } for (int i = 1; i < N; i++) cd[i] += cd[i-1]; for (int j = 0; j < M; j++) { if (w[j]/c == 0) continue; if (x[j] - w[j]/c < 0) cd[0] -= x[j] ? (x[j] + 1) * c : 0; else cd[x[j] - w[j]/c] -= (w[j]/c + 1) * c; if (x[j] + w[j]/c + 1 < N) cd[x[j] + w[j]/c + 1] += w[j]/c * c; } for (int i = 1; i < N; i++) cd[i] += cd[i-1]; bool flag = false; for (int i = 0; i < N; i++) { if (a[i] <= ft[i] + cd[i]) { flag = true; break; } } if (flag) left = c + 1; else right = c; } cout << (left < maxw+1 ? left : -1) << "\n"; }