結果

問題 No.860 買い物
ユーザー kotatsugamekotatsugame
提出日時 2019-08-09 23:47:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 1,000 ms
コード長 266 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 66,512 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 15:58:15
合計ジャッジ時間 2,184 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 81 ms
5,376 KB
testcase_08 AC 81 ms
5,376 KB
testcase_09 AC 82 ms
5,376 KB
testcase_10 AC 82 ms
5,376 KB
testcase_11 AC 62 ms
5,376 KB
testcase_12 AC 61 ms
5,376 KB
testcase_13 AC 82 ms
5,376 KB
testcase_14 AC 81 ms
5,376 KB
testcase_15 AC 32 ms
5,376 KB
testcase_16 AC 60 ms
5,376 KB
testcase_17 AC 88 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N;
long dp[1<<17];
main()
{
	cin>>N;
	long sum=0;
	long a=2e9,b=2e9;
	for(int i=0;i<N;i++)
	{
		long C,D;cin>>C>>D;
		sum+=C+D;
		a=min(a,dp[i]-D);
		b=min(b,a+C);
		dp[i+1]=b;
	}
	cout<<sum+b<<endl;
}
0