結果

問題 No.127 門松もどき
ユーザー ey429ey429
提出日時 2015-03-04 22:11:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 652 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 23,808 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 08:34:07
合計ジャッジ時間 1,601 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
testcase_04 AC 53 ms
5,376 KB
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 0 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 0 ms
5,376 KB
testcase_10 AC 0 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 27 ms
5,376 KB
testcase_13 AC 36 ms
5,376 KB
testcase_14 AC 34 ms
5,376 KB
testcase_15 AC 46 ms
5,376 KB
testcase_16 AC 31 ms
5,376 KB
testcase_17 AC 29 ms
5,376 KB
testcase_18 AC 26 ms
5,376 KB
testcase_19 AC 16 ms
5,376 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 7 ms
5,376 KB
testcase_22 AC 52 ms
5,376 KB
testcase_23 AC 47 ms
5,376 KB
testcase_24 AC 41 ms
5,376 KB
testcase_25 AC 48 ms
5,376 KB
testcase_26 AC 24 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~
main.cpp:11:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         for(i=0;i<n;i++)scanf("%d",&h[i]);
      |                         ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int h[3000];
int dp[3000][2];
int tmp[3000][2];

int max(int a,int b){return a>b?a:b;}

int main(){
	int n,i;
	scanf("%d",&n);
	for(i=0;i<n;i++)scanf("%d",&h[i]);
	for(i=0;i<n;i++){
		dp[i][0]=1;
		dp[i][1]=1;
	}
	for(i=1;i<n;i++){
		for(int j=0;j<n;j++){
			tmp[j][0]=0;
			tmp[j][1]=0;
		}
		for(int l=0;l+i<n;l++){
			int r=l+i;
			if(h[r]>h[l])tmp[l][0]=dp[r][1]+1;
			if(h[l]>h[r])tmp[r][1]=dp[l][0]+1;
		}
		for(int j=0;j<n;j++){
			dp[j][0]=max(dp[j][0],tmp[j][0]);
			dp[j][1]=max(dp[j][1],tmp[j][1]);
		}
	}
	int ans=0;
	for(i=0;i<n;i++){
		ans=max(ans,dp[i][0]);
		ans=max(ans,dp[i][1]);
	}
	printf("%d\n",ans);
	return 0;
}
0