結果

問題 No.595 登山
ユーザー NekosyndromeNekosyndrome
提出日時 2017-11-10 23:18:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 32 ms / 1,500 ms
コード長 976 bytes
コンパイル時間 1,522 ms
コンパイル使用メモリ 158,664 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-05-03 14:31:07
合計ジャッジ時間 3,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 27 ms
8,064 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 23 ms
7,296 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 24 ms
7,424 KB
testcase_10 AC 18 ms
6,400 KB
testcase_11 AC 15 ms
6,144 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 23 ms
8,192 KB
testcase_15 AC 23 ms
8,264 KB
testcase_16 AC 22 ms
8,448 KB
testcase_17 AC 22 ms
8,448 KB
testcase_18 AC 23 ms
8,396 KB
testcase_19 AC 31 ms
8,320 KB
testcase_20 AC 31 ms
8,264 KB
testcase_21 AC 31 ms
8,304 KB
testcase_22 AC 31 ms
8,188 KB
testcase_23 AC 31 ms
8,364 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 32 ms
8,320 KB
testcase_27 AC 26 ms
8,192 KB
testcase_28 AC 26 ms
8,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:43:33: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   43 |                 REP(i,1,n) scanf("%lld",&in[i]);
      |                            ~~~~~^~~~~~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(x,y,z) for(int x=y;x<=z;x++)
#define FORD(x,y,z) for(int x=y;x>=z;x--)
#define MSET(x,y) memset(x,y,sizeof(x))
#define FOR(x,y) for(__typeof(y.begin()) x=y.begin();x!=y.end();x++)
#define F first
#define S second
#define MP make_pair
#define PB push_back
#define SZ size()
#define M 200005
void RI(){}
template<typename... T>
void RI( int& head, T&... tail ) {
    scanf("%d",&head);
    RI(tail...);
}
using namespace std;
typedef long long LL;
int n;
long long in[M],p;
long long dp[M][2];//fr,bk

LL calc()
{
	dp[1][0] = 0;
	dp[1][1] = (1LL)<<60;
	REP(i,2,n)
	{
		dp[i][0] = dp[i-1][0] + min(max(in[i]-in[i-1],0LL), p);
		dp[i][1] = dp[i-1][1] + min(max(in[i-1]-in[i], 0LL), p);

		dp[i][1] = min(dp[i][1], dp[i-1][0] + p);
		dp[i][0] = min(dp[i][0], dp[i-1][1] + p);
	}

	return min(dp[n][0], dp[n][1]);
}
int main()
{
	while(~scanf("%d %lld",&n,&p))
	{
		REP(i,1,n) scanf("%lld",&in[i]);
		printf("%lld\n", calc());


	}
	return 0;
}

0