結果
問題 | No.448 ゆきこーだーの雨と雪 (3) |
ユーザー | dohatsutsu |
提出日時 | 2016-11-18 23:14:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,343 bytes |
コンパイル時間 | 1,284 ms |
コンパイル使用メモリ | 163,540 KB |
実行使用メモリ | 814,840 KB |
最終ジャッジ日時 | 2024-11-26 08:32:32 |
合計ジャッジ時間 | 44,629 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,832 KB |
testcase_01 | AC | 4 ms
8,704 KB |
testcase_02 | AC | 5 ms
8,832 KB |
testcase_03 | AC | 6 ms
8,704 KB |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | MLE | - |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
testcase_36 | MLE | - |
testcase_37 | MLE | - |
testcase_38 | MLE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:57:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 57 | scanf("%d %d",&N,&D); | ~~~~~^~~~~~~~~~~~~~~ main.cpp:60:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 60 | scanf("%d %d",&a[i],&b[i]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll,ll> P; #define MAX_N 200005 vector<int> X; int N,D; int a[MAX_N],b[MAX_N]; ll c[MAX_N]; P d[MAX_N]; ll INF = (1LL<<50); int tree[(1<<19)]; int getMax(int a,int b,int k=0,int l=0,int r=(1<<18)){ if(b<=l || r<=a)return -INF; if(a<=l && b<=r)return tree[k]; int m=(l+r)/2; return max( getMax(a,b,k*2+1,l,m) , getMax(a,b,k*2+2,m,r) ); } void update(int i,int x){ i+=(1<<18)-1; tree[i]=x; while(i){ i=(i-1)/2; tree[i]=max(tree[i*2+1],tree[i*2+2]); } } ll getSum(int a,int b){ return c[b]-c[a]; } P solve(){ fill(d,d+MAX_N, P(INF,INF) ); d[0]=P(0,0); for(int i=0;i<N;i++){ if(d[i]==P(INF,INF))continue; ll maxm=d[i].first; ll sum=d[i].second; d[i+1]=min(d[i+1], P( max(maxm,(ll)b[i]), sum+b[i] ) ); int target=lower_bound( X.begin(),X.end(),a[i]+D)-X.begin(); d[target]=min(d[target], P( max(maxm,(ll)getMax(i+1,target)) , sum+getSum(i+1,target) ) ); } return d[N]; } int main(){ fill(tree,tree+(1<<19), -INF ); scanf("%d %d",&N,&D); X.resize(N+1); for(int i=0;i<N;i++){ scanf("%d %d",&a[i],&b[i]); update( i , b[i] ); X[i]=a[i]; } X[N]=1e9+9; for(int i=0;i<N;i++)c[i+1]=c[i]+b[i]; P ans=solve(); printf("%lld\n%lld\n",ans.first,ans.second); return 0; }