結果
問題 | No.1008 Bench Craftsman |
ユーザー | ngtkana |
提出日時 | 2020-04-09 09:56:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,585 bytes |
コンパイル時間 | 2,118 ms |
コンパイル使用メモリ | 209,508 KB |
実行使用メモリ | 9,512 KB |
最終ジャッジ日時 | 2024-07-21 16:16:33 |
合計ジャッジ時間 | 8,056 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 263 ms
9,508 KB |
testcase_06 | AC | 90 ms
8,108 KB |
testcase_07 | WA | - |
testcase_08 | AC | 56 ms
6,556 KB |
testcase_09 | AC | 191 ms
7,964 KB |
testcase_10 | AC | 242 ms
9,512 KB |
testcase_11 | AC | 255 ms
9,512 KB |
testcase_12 | AC | 261 ms
9,380 KB |
testcase_13 | AC | 255 ms
9,508 KB |
testcase_14 | AC | 249 ms
9,504 KB |
testcase_15 | AC | 246 ms
9,508 KB |
testcase_16 | AC | 257 ms
9,508 KB |
testcase_17 | AC | 247 ms
9,512 KB |
testcase_18 | WA | - |
testcase_19 | AC | 254 ms
9,508 KB |
testcase_20 | AC | 106 ms
7,632 KB |
testcase_21 | AC | 112 ms
7,532 KB |
testcase_22 | AC | 172 ms
8,064 KB |
testcase_23 | AC | 203 ms
8,572 KB |
testcase_24 | AC | 208 ms
8,528 KB |
testcase_25 | AC | 93 ms
7,884 KB |
testcase_26 | AC | 82 ms
7,580 KB |
testcase_27 | AC | 151 ms
7,700 KB |
testcase_28 | AC | 145 ms
8,200 KB |
testcase_29 | AC | 213 ms
8,972 KB |
ソースコード
#include<bits/stdc++.h> #define ALL(v) std::begin(v),std::end(v) using lint=long long; using ld=long double; void cmx(lint&x,lint y){if(x<y)x=y;} int main(){ std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false); std::cout.setf(std::ios_base::fixed);std::cout.precision(15); lint inf=std::numeric_limits<lint>::max()/3; lint n,m;std::cin>>n>>m; std::vector<lint>a(n); for(lint&x:a)std::cin>>x; std::vector<std::pair<lint,lint>>xw(m); for(auto&&[x,w]:xw){ std::cin>>x>>w;x--; } { lint wmax=0; for(auto&&[x,w]:xw)cmx(wmax,w); for(auto&&[x,w]:xw)x+=wmax; std::vector<lint>swp(n+2*wmax,inf); std::copy(ALL(a),swp.begin()+wmax); n+=2*wmax; swp.swap(a); } auto ok=[&](lint c){ if(c==0){ lint sum=0; for(auto&&[x,w]:xw)sum+=w; return std::all_of(ALL(a),[sum](lint x){return sum<=x;}); } std::vector<lint>b(n+1); for(auto&&[x,w]:xw){ lint q=w/c; b.at(x-q+1)+=c; b.at(x+1)-=2*c; b.at(x+q+1)+=c; } std::partial_sum(ALL(b),b.begin()); for(auto&&[x,w]:xw){ lint q=w/c,r=w%c; b.at(x-q)+=r; b.at(x+q+1)-=r; } std::partial_sum(ALL(b),b.begin()); for(lint i=0;i<n;i++){ if(a.at(i)<b.at(i))return false; } return true; }; lint l=-1,r=inf; while(1<r-l){ lint c=(l+r)/2; (ok(c)?r:l)=c; } std::cout<<(r==inf?-1:r)<<'\n'; }