結果

問題 No.314 ケンケンパ
ユーザー cielciel
提出日時 2015-12-07 00:31:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 94 ms / 1,000 ms
コード長 412 bytes
コンパイル時間 636 ms
コンパイル使用メモリ 40,448 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-09-14 17:07:50
合計ジャッジ時間 1,774 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
78,336 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 0 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 0 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 10 ms
9,216 KB
testcase_18 AC 44 ms
38,912 KB
testcase_19 AC 92 ms
79,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:17:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   17 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include <unordered_map>
#include <cstdio>
using namespace std;

//unordered_map<int,int>memo;
int memo[8000008];
int dfs(int k,int p,int d){
	if(k<0||p<0)return 0;
	if(d==0)return 1;
	auto x=(d<<3)|(k<<1)|p;
	//if(memo.find(x)!=memo.end())return memo[x];
	if(memo[x])return memo[x];
	return memo[x]=(dfs(k-1,1,d-1)+dfs(2,p-1,d-1))%1000000007;
}
int main(){
	int n;
	scanf("%d",&n);
	printf("%d\n",dfs(2,0,n));
}
0