結果
問題 | No.1012 荷物収集 |
ユーザー | otamay6 |
提出日時 | 2019-11-27 11:22:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,012 bytes |
コンパイル時間 | 1,711 ms |
コンパイル使用メモリ | 170,292 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-14 12:35:05 |
合計ジャッジ時間 | 9,249 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 227 ms
6,820 KB |
testcase_05 | AC | 237 ms
6,820 KB |
testcase_06 | AC | 227 ms
6,816 KB |
testcase_07 | AC | 228 ms
6,816 KB |
testcase_08 | AC | 235 ms
6,816 KB |
testcase_09 | AC | 236 ms
6,816 KB |
testcase_10 | AC | 239 ms
6,816 KB |
testcase_11 | AC | 228 ms
6,820 KB |
testcase_12 | AC | 228 ms
6,820 KB |
testcase_13 | AC | 232 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 2 ms
6,820 KB |
ソースコード
#include"bits/stdc++.h" #define _overload3(_1,_2,_3,name,...) name #define _rep(i,n) repi(i,0,n) #define repi(i,a,b) for(int i=(a);i<(b);++i) #define rep(...) _overload3(__VA_ARGS__,repi,_rep,)(__VA_ARGS__) #define All(x) (x).begin(),(x).end() #define rAll(x) (x).rbegin(),(x).rend() using namespace std; using ll = long long; typedef pair<int,int> P; typedef vector<int> vi; typedef vector<vi> vvi; const int mod=1000000007; int gcd(int x,int y){return y?gcd(y,x%y):x;} int lcm(int x,int y){return x*y/gcd(x,y);} int roundup(int a,int b){return (a-1)/b+1;} signed main(){ int N,Q; cin>>N>>Q; vector<ll> x(N),w(N),X(Q); rep(i,N) cin>>x[i]>>w[i]; rep(i,Q) cin>>X[i]; vector<ll> S(N+1); ll res=0; int j=0; rep(i,N){ S[i+1]=S[i]+w[i]; res+=llabs(X[0]-x[i])*w[i]; if(x[i]<X[0]) j=i+1; } cout<<res<<endl; rep(i,1,Q){ int l=j; while(j<N&&X[i]>x[j]){ res-=(x[j]-X[i-1])*w[j]; res+=(X[i]-x[j])*w[j]; j++; } int r=j; res+=(X[i]-X[i-1])*(S[l]-(S[N]-S[r])); cout<<res<<endl; } }