結果

問題 No.695 square1001 and Permutation 4
ユーザー maspymaspy
提出日時 2020-05-14 22:08:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,138 bytes
コンパイル時間 1,153 ms
コンパイル使用メモリ 68,608 KB
実行使用メモリ 42,528 KB
最終ジャッジ日時 2024-07-22 19:39:22
合計ジャッジ時間 9,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
42,508 KB
testcase_01 AC 655 ms
42,496 KB
testcase_02 AC 78 ms
42,496 KB
testcase_03 AC 77 ms
42,496 KB
testcase_04 AC 618 ms
42,496 KB
testcase_05 AC 596 ms
42,496 KB
testcase_06 AC 505 ms
42,496 KB
testcase_07 AC 654 ms
42,528 KB
testcase_08 AC 491 ms
42,472 KB
testcase_09 AC 442 ms
42,496 KB
testcase_10 AC 582 ms
42,496 KB
testcase_11 WA -
testcase_12 RE -
testcase_13 AC 866 ms
42,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

#define U 10000010
int dp[U];
int X[5];
int n, m;
using ll = long long;

ll solve(ll mod){
    for(int i=0;i<U;i++){
        dp[i] = 0;
    }
    dp[0] = 1;
    for(int i=1;i<U;i++){
        for(int j=0;j<m;j++){
            int x = X[j];
            if(x <= i){
                dp[i] += dp[i-x];
            }
            if(dp[i] >= mod){
                dp[i] -= mod;
            }
        }
    }
    if (n < U){
        return dp[n];
    }
    ll ret = 0;
    for(int i=0;i<U;i++){
        for(int j=0;j<m;j++){
            int x = X[j];
            if(i + x < U){
                continue;
            }
            int r = n - i - x;
            ret += (ll)(dp[i]) * (ll)(dp[r]) % mod;
        }
    }
    return ret % mod;
}

int main(){
    cin >> n >> m;
    n--;
    for(int i=0;i<m;i++){
        cin >> X[i];
    }
    ll mod1 = 168647939;
    ll mod2 = 592951213;
    ll mod = mod1 * mod2;
    ll x1 = solve(mod1);
    ll x2 = solve(mod2);
    ll d = (x2 - x1) * 442445312LL % mod2;
    ll x = x1 + d * mod1;
    if(x<0){
        x += mod;
    }
    cout << x << endl;
    return 0;
}
0