結果
問題 | No.448 ゆきこーだーの雨と雪 (3) |
ユーザー | rickytheta |
提出日時 | 2016-11-18 22:48:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 55 ms / 2,000 ms |
コード長 | 1,983 bytes |
コンパイル時間 | 1,368 ms |
コンパイル使用メモリ | 161,148 KB |
実行使用メモリ | 9,676 KB |
最終ジャッジ日時 | 2024-06-11 19:29:35 |
合計ジャッジ時間 | 3,852 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 9 ms
6,944 KB |
testcase_14 | AC | 9 ms
6,944 KB |
testcase_15 | AC | 20 ms
7,244 KB |
testcase_16 | AC | 35 ms
8,268 KB |
testcase_17 | AC | 35 ms
8,396 KB |
testcase_18 | AC | 7 ms
6,940 KB |
testcase_19 | AC | 48 ms
9,160 KB |
testcase_20 | AC | 18 ms
6,988 KB |
testcase_21 | AC | 47 ms
9,292 KB |
testcase_22 | AC | 18 ms
6,940 KB |
testcase_23 | AC | 47 ms
9,036 KB |
testcase_24 | AC | 13 ms
6,940 KB |
testcase_25 | AC | 46 ms
9,164 KB |
testcase_26 | AC | 7 ms
6,944 KB |
testcase_27 | AC | 34 ms
8,264 KB |
testcase_28 | AC | 33 ms
8,012 KB |
testcase_29 | AC | 19 ms
6,988 KB |
testcase_30 | AC | 48 ms
9,160 KB |
testcase_31 | AC | 8 ms
6,940 KB |
testcase_32 | AC | 9 ms
6,940 KB |
testcase_33 | AC | 51 ms
9,548 KB |
testcase_34 | AC | 49 ms
9,420 KB |
testcase_35 | AC | 50 ms
9,676 KB |
testcase_36 | AC | 47 ms
9,676 KB |
testcase_37 | AC | 50 ms
9,548 KB |
testcase_38 | AC | 55 ms
9,552 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:41:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 41 | scanf("%d%d",&n,&k); | ~~~~~^~~~~~~~~~~~~~ main.cpp:44:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 44 | scanf("%d%d",&t,&d); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; typedef pair<int,int> pii; typedef pair<ll,ll> pll; typedef int _loop_int; #define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i) #define FOR(i,a,b) for(_loop_int i=(_loop_int)(a);i<(_loop_int)(b);++i) #define FORR(i,a,b) for(_loop_int i=(_loop_int)(b)-1;i>=(_loop_int)(a);--i) #define DEBUG(x) cout<<#x<<": "<<x<<endl #define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl #define ALL(a) (a).begin(),(a).end() #define CHMIN(a,b) a=min((a),(b)) #define CHMAX(a,b) a=max((a),(b)) // mod const ll MOD = 1000000007ll; #define FIX(a) ((a)%MOD+MOD)%MOD // floating typedef double Real; const Real EPS = 1e-11; #define EQ0(x) (abs(x)<EPS) #define EQ(a,b) (abs(a-b)<EPS) typedef complex<Real> P; int n,k; pii qs[252521]; ll psum[252521]; int cnt[252521]; ll dp[252521]; int main(){ scanf("%d%d",&n,&k); REP(i,n){ int t,d; scanf("%d%d",&t,&d); qs[i] = pii(t,d); } // calc max difficulty int low = -1, high = 1000000025; while(low+1 < high){ int mid = (low+high)/2; int last = -k; bool flag = true; REP(i,n){ if(qs[i].second > mid){ // wake if(qs[i].first - last >= k){ // ok last = qs[i].first; }else{ // ng flag = false; break; } } } if(flag){ high = mid; }else{ low = mid; } } int mxd = high; REP(i,n)psum[i+1] = psum[i]+qs[i].second; REP(i,n)cnt[i+1] = cnt[i]+(int)(qs[i].second > mxd); REP(i,n+1)dp[i] = (ll)1e18; dp[0] = 0; int plusk = 0; REP(i,n){ int now = qs[i].first; int dif = qs[i].second; // use if(dif <= mxd)CHMIN(dp[i+1],dp[i]+dif); // skip this while(plusk < n && qs[plusk].first < now+k)plusk++; if(cnt[plusk]-cnt[i+1]==0)CHMIN(dp[plusk],dp[i]+psum[plusk]-psum[i+1]); } printf("%d\n%lld\n",mxd,dp[n]); return 0; }