結果

問題 No.1025 Modular Equation
ユーザー chocoruskchocorusk
提出日時 2020-03-04 22:55:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 861 bytes
コンパイル時間 726 ms
コンパイル使用メモリ 70,152 KB
実行使用メモリ 11,420 KB
最終ジャッジ日時 2024-05-08 02:02:21
合計ジャッジ時間 10,582 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1,050 ms
5,376 KB
testcase_03 AC 444 ms
5,376 KB
testcase_04 AC 362 ms
5,376 KB
testcase_05 AC 343 ms
5,376 KB
testcase_06 AC 211 ms
5,376 KB
testcase_07 AC 303 ms
5,376 KB
testcase_08 AC 295 ms
5,376 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <vector>
#include <algorithm>
typedef long long ll;
using namespace std;
const int MOD=1e9+7;
ll powmod(ll a, ll k, ll mod){
    ll ap=a, ans=1;
    while(k){
        if(k&1){
            ans*=ap;
            ans%=mod;
        }
        ap=ap*ap;
        ap%=mod;
        k>>=1;
    }
    return ans;
}
ll a[505], q[100010];
int dp[2][100010];
int main()
{
    int n, k; ll b, p;
	scanf("%lld %d %d %lld", &p, &n, &k, &b);
	for(int i=0; i<n; i++) scanf("%lld", &a[i]);
	for(ll i=0; i<p; i++){
		q[i]=powmod(i, k, p);
	}
	dp[0][0]=1;
	for(int i=0; i<n; i++){
		fill(dp[(i&1)^1], dp[(i&1)^1]+p, 0);
		for(int j=0; j<p; j++){
			for(int l=0; l<p; l++){
				ll m=(j+a[i]*q[l])%p;
				dp[(i&1)^1][m]+=dp[i&1][j];
				if(dp[(i&1)^1][m]>=MOD) dp[(i&1)^1][m]-=MOD;
			}
		}
	}
	printf("%d\n", dp[n&1][b]);
    return 0;
}
0