結果

問題 No.1025 Modular Equation
ユーザー chocoruskchocorusk
提出日時 2020-03-05 02:04:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,202 ms / 5,000 ms
コード長 1,302 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 66,976 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-05-08 02:00:46
合計ジャッジ時間 22,738 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 18 ms
5,376 KB
testcase_04 AC 17 ms
5,376 KB
testcase_05 AC 16 ms
5,376 KB
testcase_06 AC 13 ms
5,376 KB
testcase_07 AC 15 ms
5,376 KB
testcase_08 AC 13 ms
5,376 KB
testcase_09 AC 694 ms
6,144 KB
testcase_10 AC 713 ms
6,144 KB
testcase_11 AC 718 ms
6,272 KB
testcase_12 AC 771 ms
6,272 KB
testcase_13 AC 710 ms
6,144 KB
testcase_14 AC 756 ms
6,144 KB
testcase_15 AC 810 ms
6,272 KB
testcase_16 AC 772 ms
6,272 KB
testcase_17 AC 803 ms
6,144 KB
testcase_18 AC 748 ms
6,272 KB
testcase_19 AC 914 ms
6,144 KB
testcase_20 AC 857 ms
6,144 KB
testcase_21 AC 887 ms
6,144 KB
testcase_22 AC 876 ms
6,400 KB
testcase_23 AC 1,115 ms
6,144 KB
testcase_24 AC 774 ms
6,016 KB
testcase_25 AC 777 ms
6,400 KB
testcase_26 AC 789 ms
6,272 KB
testcase_27 AC 844 ms
6,272 KB
testcase_28 AC 840 ms
6,272 KB
testcase_29 AC 843 ms
6,144 KB
testcase_30 AC 931 ms
6,016 KB
testcase_31 AC 994 ms
6,400 KB
testcase_32 AC 1,202 ms
6,272 KB
testcase_33 AC 35 ms
5,376 KB
testcase_34 AC 682 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
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[100010], tmp[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%k;
	dp[k]=1;
	for(int i=0; i<n; i++){
		for(int j=0; j<=k; j++) tmp[j]=dp[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) (tmp[k]+=dp[j]*k)%=MOD;
				else (tmp[qi[m]]+=dp[j]*k)%=MOD;
			}
		}
		if(a[i]==0) (tmp[k]+=dp[k]*(p-1))%=MOD;
		else (tmp[qi[a[i]]]+=dp[k]*(p-1))%=MOD;
		swap(tmp, dp);
	}
	if(b==0) cout<<dp[k]<<endl;
	else cout<<dp[qi[b]]*inv((p-1)/k, MOD)%MOD<<endl;
    return 0;
}
0