結果
問題 | No.1008 Bench Craftsman |
ユーザー | jell |
提出日時 | 2020-03-15 23:04:58 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,143 bytes |
コンパイル時間 | 2,623 ms |
コンパイル使用メモリ | 156,104 KB |
実行使用メモリ | 5,492 KB |
最終ジャッジ日時 | 2024-11-26 06:25:39 |
合計ジャッジ時間 | 7,676 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 197 ms
5,248 KB |
testcase_06 | AC | 54 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 15 ms
5,248 KB |
testcase_09 | AC | 144 ms
5,248 KB |
testcase_10 | AC | 191 ms
5,372 KB |
testcase_11 | AC | 189 ms
5,248 KB |
testcase_12 | AC | 189 ms
5,376 KB |
testcase_13 | AC | 181 ms
5,248 KB |
testcase_14 | AC | 188 ms
5,248 KB |
testcase_15 | AC | 188 ms
5,248 KB |
testcase_16 | AC | 189 ms
5,492 KB |
testcase_17 | AC | 191 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | AC | 189 ms
5,248 KB |
testcase_20 | AC | 197 ms
5,248 KB |
testcase_21 | AC | 71 ms
5,248 KB |
testcase_22 | AC | 123 ms
5,248 KB |
testcase_23 | AC | 146 ms
5,248 KB |
testcase_24 | AC | 150 ms
5,248 KB |
testcase_25 | AC | 58 ms
5,248 KB |
testcase_26 | AC | 49 ms
5,248 KB |
testcase_27 | AC | 102 ms
5,248 KB |
testcase_28 | AC | 99 ms
5,248 KB |
testcase_29 | AC | 163 ms
5,248 KB |
コンパイルメッセージ
main.cpp:21:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 21 | main() | ^~~~
ソースコード
#define _GLIBCXX_DEBUG #include <iostream> #include <vector> #include <bitset> #include <functional> #include <queue> #include <algorithm> #include <map> #include <set> #include <cmath> #include <tuple> #include <cassert> #include <string> using namespace std; template <class T> void chmax(T &x, T y) {if(x<y) x=y;} template <class T> void chmin(T &x, T y) {if(x>y) x=y;} main() { ios::sync_with_stdio(false), cin.tie(nullptr); int n,m; cin>>n>>m; vector<int> a(n); for(int &e:a) cin>>e; vector<pair<int,int>> h(m); for(auto &e:h) { int x,w; cin>>x>>w; --x; e={x,w}; } // binary search long long ok=1e5+1; long long ng=0; while(ok-ng>1) { long long c=(ok+ng)/2; vector<long long> b(n+1); for(auto &e:h) { int x,w; tie(x,w)=e; const int l=max(0LL,x-w/c); const int r=x+w/c+1; b[l+1]+=c; b[x+1]-=c*2; if(r<=n) b[r]+=c; } for(int i=0;i<n;++i) { b[i+1]+=b[i]; } for(auto &e:h) { int x,w; tie(x,w)=e; const int l=max(0LL,x-w/c); const int r=x+w/c+1; b[l]+=w-c*(x-l); if(r<=n) b[r]-=w%c; } for(int i=0;i<n;++i) { b[i+1]+=b[i]; } bool fail=0; if(c==2) cerr<<"debug\n\t"; for(int i=0;i<n;++i) { if(c==2) { cerr<<b[i]<<" "; } if(b[i]>a[i]) { fail=1; } } if(c==2) cerr<<"\n"; if(fail) { ng=c; } else { ok=c; } } if(ng) { if(ok>1e5) cout << -1 << "\n"; else cout << ok << "\n"; } else { long long ws=0; for(auto &e:h) { ws+=e.second; } if(ws>*min_element(begin(a),end(a))) { cout << 1 << "\n"; } else { cout << 0 << "\n"; } } }