結果

問題 No.1025 Modular Equation
ユーザー chocoruskchocorusk
提出日時 2020-03-04 22:50:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,479 ms / 5,000 ms
コード長 1,396 bytes
コンパイル時間 726 ms
コンパイル使用メモリ 72,640 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-30 23:57:33
合計ジャッジ時間 28,067 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 5 ms
6,820 KB
testcase_04 AC 4 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 4 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 888 ms
6,820 KB
testcase_10 AC 919 ms
6,816 KB
testcase_11 AC 917 ms
6,816 KB
testcase_12 AC 1,007 ms
6,816 KB
testcase_13 AC 896 ms
6,816 KB
testcase_14 AC 982 ms
6,824 KB
testcase_15 AC 1,027 ms
6,816 KB
testcase_16 AC 966 ms
6,820 KB
testcase_17 AC 1,032 ms
6,816 KB
testcase_18 AC 946 ms
6,816 KB
testcase_19 AC 1,096 ms
6,820 KB
testcase_20 AC 1,029 ms
6,816 KB
testcase_21 AC 1,084 ms
6,820 KB
testcase_22 AC 1,071 ms
6,816 KB
testcase_23 AC 1,375 ms
6,820 KB
testcase_24 AC 986 ms
6,820 KB
testcase_25 AC 996 ms
6,820 KB
testcase_26 AC 1,007 ms
6,820 KB
testcase_27 AC 1,082 ms
6,820 KB
testcase_28 AC 1,081 ms
6,816 KB
testcase_29 AC 1,091 ms
6,820 KB
testcase_30 AC 1,119 ms
6,820 KB
testcase_31 AC 1,219 ms
6,816 KB
testcase_32 AC 1,479 ms
6,820 KB
testcase_33 AC 3 ms
6,820 KB
testcase_34 AC 938 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
typedef long long ll;
using namespace std;
const ll MOD=1e9+7;
ll powmod(ll a, ll k, ll mod){
	if(a==0) return 0;
    ll ap=a, ans=1;
    while(k){
        if(k&1){
            ans*=ap;
            ans%=mod;
        }
        ap=ap*ap;
        ap%=mod;
        k>>=1;
    }
    return ans;
}
ll inv(ll a, ll mod){
    return powmod(a, mod-2, mod);
}
ll gcd(ll a, ll b){
	if(b==0) return a;
	return gcd(b, a%b);
}
ll a[505], q[100010], dp[2][100010];
int qi[100010];
int main()
{
    int n, k; ll b, p;
	cin>>p>>n>>k>>b;
	k=gcd(k, p-1);
	for(int i=0; i<n; i++) cin>>a[i];
	ll r;
	for(r=1; r<p; r++){
		bool dame=0;
		ll pp=1;
		for(int i=0; i<p-2; i++){
			(pp*=r)%=p;
			if(pp==1){
				dame=1; break;
			}
		}
		if(!dame) break;
	}
	q[0]=1;
	for(int i=1; i<p-1; i++) q[i]=q[i-1]*r%p;
	for(int i=0; i<p-1; i++) qi[q[i]]=i;
	dp[0][k]=1;
	for(int i=0; i<n; i++){
		for(int j=0; j<=k; j++) dp[(i&1)^1][j]=dp[i&1][j];
		for(int j=0; j<k; j++){
			for(int l=0; l<(p-1)/k; l++){
				ll m=(q[l*k]*a[i]+q[j])%p;
				if(m==0) (dp[(i&1)^1][k]+=dp[i&1][j]*k)%=MOD;
				else (dp[(i&1)^1][qi[m]%k]+=dp[i&1][j]*k)%=MOD;
			}
		}
		if(a[i]==0) (dp[(i&1)^1][k]+=dp[i&1][k]*(p-1))%=MOD;
		else (dp[(i&1)^1][qi[a[i]]%k]+=dp[i&1][k]*(p-1))%=MOD;
	}
	if(b==0) cout<<dp[n&1][k]<<endl;
	else cout<<dp[n&1][qi[b]%k]*inv((p-1)/k, MOD)%MOD<<endl;
    return 0;
}
0