結果
問題 | No.448 ゆきこーだーの雨と雪 (3) |
ユーザー | vjudge1 |
提出日時 | 2025-01-03 19:40:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 891 bytes |
コンパイル時間 | 4,089 ms |
コンパイル使用メモリ | 39,168 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2025-01-03 19:41:05 |
合計ジャッジ時間 | 5,772 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 0 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 0 ms
6,820 KB |
testcase_13 | WA | - |
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 | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:18:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | scanf("%d %d",&n,&k); | ~~~~~^~~~~~~~~~~~~~~ main.cpp:19:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | for(int i=1;i<=n;i++) scanf("%d %d",&a[i].t,&a[i].d); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<algorithm> using namespace std; const int N=2e5+10; int n,k,dp[N]; struct Work { int t,d; }a[N]; bool check(int x) { int lst=-1e9; for(int i=1;i<=n;i++) { if(a[i].d<=x) continue; if(a[i].t-lst<k) return false; lst=a[i].t; } return true; } int main() { //freopen("help.in","r",stdin); //freopen("help.out","w",stdout); scanf("%d %d",&n,&k); for(int i=1;i<=n;i++) scanf("%d %d",&a[i].t,&a[i].d); int l=0,r=1e9,ans=1e9; while(l<=r) { int mid=(l+r)>>1; if(check(mid)) ans=mid,r=mid-1; else l=mid+1; } printf("%d\n",ans); for(int i=2;i<=n+1;i++) dp[i]=-1e9; int sum=0; for(int i=1,p=0;i<=n;i++) { while(a[i].t-a[p].t>=k) p++; if(!p||a[i].t-a[p-1].t>=k) dp[i+1]=max(dp[i+1],dp[p]+a[i].d); if(a[i].d<=ans) dp[i+1]=max(dp[i+1],dp[i]); else p=i+1; sum+=a[i].d; } printf("%d",sum-dp[n+1]); return 0; }