結果

問題 No.3046 yukicoderの過去問
ユーザー ransewhaleransewhale
提出日時 2019-04-01 22:41:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 732 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 165,584 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-05-05 08:28:47
合計ジャッジ時間 4,963 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
14,080 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 7 ms
8,960 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 6 ms
8,960 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
#define INF (1<<30)
#define INFLL (1ll<<60)
typedef pair<int, int> P;
typedef pair<int, P> E;
#define MOD (1000000007ll)
#define l_ength size

void mul_mod(ll& a, ll b){
	a *= b;
	a %= MOD;
}

void add_mod(ll& a, ll b){
	a += b;
	if(a>MOD){
		a -= MOD;
	}
}

bool done[100100];
ll memo[100100];
int k,x[100100];

ll solve(int p){
	int i;
	if(done[p]){
		return memo[p];
	}
	done[p] = true;
	if(!p){
		memo[p] = 1ll;
		return memo[p];
	}
	for(i=0; i<k; ++i){
		if(p<x[i]){
			break;
		}
		add_mod(memo[p],solve(p-x[i]));
	}
	return memo[p];
}

int main(void){
	int n,i;
	cin >> n >> k;
	for(i=0; i<k; ++i){
		cin >> x[i];
	}
	cout << solve(n) << endl;
	return 0;
}
0