結果
問題 | No.1008 Bench Craftsman |
ユーザー | jupiro |
提出日時 | 2020-03-08 16:23:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,552 bytes |
コンパイル時間 | 1,205 ms |
コンパイル使用メモリ | 118,792 KB |
実行使用メモリ | 9,612 KB |
最終ジャッジ日時 | 2024-11-07 07:58:43 |
合計ジャッジ時間 | 6,824 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 194 ms
9,608 KB |
testcase_06 | AC | 95 ms
8,068 KB |
testcase_07 | WA | - |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 63 ms
5,248 KB |
testcase_10 | AC | 189 ms
9,608 KB |
testcase_11 | AC | 190 ms
9,484 KB |
testcase_12 | AC | 190 ms
9,604 KB |
testcase_13 | AC | 189 ms
9,608 KB |
testcase_14 | AC | 187 ms
9,608 KB |
testcase_15 | AC | 187 ms
9,484 KB |
testcase_16 | AC | 188 ms
9,608 KB |
testcase_17 | AC | 187 ms
9,612 KB |
testcase_18 | WA | - |
testcase_19 | AC | 185 ms
9,480 KB |
testcase_20 | AC | 77 ms
6,552 KB |
testcase_21 | AC | 72 ms
6,144 KB |
testcase_22 | AC | 88 ms
5,888 KB |
testcase_23 | AC | 134 ms
7,680 KB |
testcase_24 | AC | 124 ms
6,948 KB |
testcase_25 | AC | 88 ms
7,552 KB |
testcase_26 | AC | 66 ms
6,452 KB |
testcase_27 | AC | 66 ms
5,248 KB |
testcase_28 | AC | 110 ms
7,432 KB |
testcase_29 | AC | 152 ms
8,448 KB |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } constexpr long long MAX = 5100000; constexpr long long INF = 1LL << 60; constexpr int inf = 1 << 28; constexpr long long mod = 1000000007LL; //constexpr long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; ll n, m; vector<ll> a, x, w; bool check(ll mid) { vector<ll> sum(n + 5), L(n + 5), R(n + 5), Lcnt(n + 5), Rcnt(n + 5); for (int i = 0; i < m; i++) { ll d = w[i] / mid; ll left = max(0LL, x[i] - d); ll right = min(n - 1, x[i] + d); sum[left] += w[i]; sum[right + 1] -= w[i]; if (x[i] != 0) L[x[i] - 1]++; if (left != 0) L[left - 1]--, Lcnt[left - 1] -= d; R[x[i] + 1]++; R[right + 1]--, Rcnt[right + 1] -= d; } for (int i = 0; i <= n; i++) sum[i + 1] += sum[i]; for (int i = n; i >= 0; i--) L[i] += L[i + 1]; for (int i = 0; i <= n; i++) R[i + 1] += R[i]; for (int i = 0; i <= n; i++) L[i] += Lcnt[i], R[i] += Rcnt[i]; for (int i = n; i >= 0; i--) L[i] += L[i + 1]; for (int i = 0; i <= n; i++) R[i + 1] += R[i]; for (int i = 0; i <= n; i++) sum[i] -= (L[i] + R[i]) * mid; for (ll i = 0; i < n; i++) { //cout << mid << " " << sum[i] << " " << a[i] << endl; if (sum[i] > a[i]) return false; } return true; } int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ scanf("%lld %lld", &n, &m); a.resize(n); for (int i = 0; i < n; i++) scanf("%lld", &a[i]); ll sum = 0; x.resize(m), w.resize(m); for (int i = 0; i < m; i++) scanf("%lld %lld", &x[i], &w[i]), x[i]--, sum += w[i]; bool flag = true; for (int i = 0; i < n; i++) if (a[i] < sum) flag = false; if (flag) { puts("0"); return 0; } ll left = 0; ll right = mod; while (right - left > 1) { ll mid = (left + right) >> 1; if (check(mid)) right = mid; else left = mid; } if (right == mod) right = -1; cout << right << endl; return 0; /* おまじないを使ったらscanfとprintf関連注意!!!!!!!!!!!! */ }