結果

問題 No.1239 Multiplication -2
ユーザー msm1993msm1993
提出日時 2020-10-06 11:51:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 1,942 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 71,708 KB
実行使用メモリ 32,128 KB
最終ジャッジ日時 2024-07-20 00:43:58
合計ジャッジ時間 3,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 15 ms
12,328 KB
testcase_16 AC 22 ms
18,432 KB
testcase_17 AC 34 ms
32,000 KB
testcase_18 AC 34 ms
32,128 KB
testcase_19 AC 35 ms
32,128 KB
testcase_20 AC 37 ms
32,072 KB
testcase_21 AC 34 ms
31,488 KB
testcase_22 AC 34 ms
30,320 KB
testcase_23 AC 27 ms
23,292 KB
testcase_24 AC 26 ms
22,496 KB
testcase_25 AC 21 ms
19,792 KB
testcase_26 AC 24 ms
21,120 KB
testcase_27 AC 11 ms
11,008 KB
testcase_28 AC 33 ms
27,788 KB
testcase_29 AC 36 ms
29,824 KB
testcase_30 AC 17 ms
14,592 KB
testcase_31 AC 24 ms
20,212 KB
testcase_32 AC 38 ms
31,872 KB
testcase_33 AC 28 ms
23,168 KB
testcase_34 AC 28 ms
21,700 KB
testcase_35 AC 15 ms
12,312 KB
testcase_36 AC 13 ms
11,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
const int MOD = 998244353;
long long extgcd(long long a, long long b, long long &x, long long &y){
    int d = a;
    if(b != 0){
        d = extgcd(b, a % b, y, x);
        y -= (a / b) * x;
    }
    else{
        x = 1;
        y = 0;
    }
    return d;
}
long long repow(long long x, long long y){
    if(y == 0) return 1;
    long long res = 1;
    while(y > 0){
        if(y & 1) res = res * x % MOD;
        x = x * x % MOD;
        y >>= 1;
    }
    return res;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin >> N;
    vector<int> a(N);
    for(int i = 0; i < N; i++) cin >> a[i];
    long long Q = repow(2, N - 1);
    long long dp[N + 1][2][3][3];
    for(int i = 0; i < N + 1; i++){
        for(int j = 0; j < 2; j++){
            for(int k = 0; k < 3; k++){
                for(int l = 0; l < 3; l++) dp[i][j][k][l] = 0;
            }
        }
    }
    dp[0][0][0][0] = 1;
    for(int i = 0; i < N; i++){
        int neg = (a[i] < 0) ? 1 : 0;
        int two = (a[i] == 0) ? 2 : (abs(a[i]) % 2 == 0) ? 1 : 0;
        for(int j = 0; j < 2; j++){
            for(int k = 0; k < 3; k++){
                if(i == 0) dp[i + 1][j][k][0] = dp[i][j][k][0];
                else dp[i + 1][j][k][0] = 2 * dp[i][j][k][0] % MOD;

                dp[i + 1][(j + neg) % 2][min(2, k + two)][1] += dp[i][j][k][0] + dp[i][j][k][1];
                dp[i + 1][(j + neg) % 2][min(2, k + two)][2] += dp[i][j][k][0] + dp[i][j][k][1];
                dp[i + 1][(j + neg) % 2][min(2, k + two)][1] %= MOD;
                dp[i + 1][(j + neg) % 2][min(2, k + two)][2] %= MOD;

                if(i == N - 1) dp[i + 1][j][k][2] += dp[i][j][k][2];
                else dp[i + 1][j][k][2] += dp[i][j][k][2] * 2 % MOD;
                dp[i + 1][j][k][2] %= MOD;
            }
        }
    }
    cout << dp[N][1][1][2] * repow(Q, MOD - 2) % MOD << endl;
}
0