結果
問題 | No.1008 Bench Craftsman |
ユーザー | chielo |
提出日時 | 2020-03-06 23:32:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,442 bytes |
コンパイル時間 | 2,319 ms |
コンパイル使用メモリ | 213,800 KB |
実行使用メモリ | 17,788 KB |
最終ジャッジ日時 | 2024-10-14 10:00:14 |
合計ジャッジ時間 | 49,185 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_05 | TLE | - |
testcase_06 | AC | 197 ms
5,848 KB |
testcase_07 | WA | - |
testcase_08 | AC | 93 ms
5,276 KB |
testcase_09 | AC | 1,036 ms
16,876 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 567 ms
7,240 KB |
testcase_21 | AC | 794 ms
7,248 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | AC | 272 ms
5,756 KB |
testcase_26 | AC | 239 ms
5,708 KB |
testcase_27 | AC | 1,842 ms
16,620 KB |
testcase_28 | AC | 1,172 ms
10,704 KB |
testcase_29 | TLE | - |
ソースコード
#include <bits/stdc++.h> typedef long long ll; const int maxn = 2e5 + 3; int n, m, x[maxn]; ll a[maxn], w[maxn]; ll ceildiv(ll a, ll b) { return a % b ? a / b + 1 : a / b; } std::vector<std::tuple<int, ll, ll>> pt; bool check(ll c) { if(c <= 0) { return std::accumulate(w, w + m, 0ll) <= *std::min_element(a + 1, a + n + 1); } pt.clear(); for(int j = 0; j < m; ++j) { ll u = w[j] / c + x[j]; ll v = x[j] - w[j] / c; pt.emplace_back(v, c, w[j] - c * x[j]); pt.emplace_back(x[j], -c, -(w[j] - c * x[j]) + w[j]); pt.emplace_back(x[j] + 1, -c, w[j] + c * x[j] - w[j]); pt.emplace_back(u + 1, c, -(w[j] + c * x[j])); } std::sort(pt.begin(), pt.end()); int j = 0; ll u = 0, v = 0; for(int i = 1; i <= n; ++i) { while(j < pt.size() && std::get<0>(pt[j]) <= i) { u += std::get<1>(pt[j]); v += std::get<2>(pt[j]); j += 1; } if(u * (ll)i + v > a[i]) return false; } return true; } int main() { scanf("%d%d", &n, &m); for(int i = 1; i <= n; ++i) scanf("%lld", a + i); for(int i = 0; i < m; ++i) scanf("%d%lld", x + i, w + i); ll l = -1, r = 1e18; while(r - l > 1) { ll mid = (l + r) / 2; if(check(mid)) r = mid; else l = mid; } printf("%lld\n", r < 1e18 ? r : -1); return 0; }