結果

問題 No.1741 Arrays and XOR Procedure
ユーザー 👑 NachiaNachia
提出日時 2021-11-12 21:59:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 1,212 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 76,872 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 08:37:46
合計ジャッジ時間 2,169 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 15 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 14 ms
5,376 KB
testcase_07 AC 16 ms
5,376 KB
testcase_08 AC 13 ms
5,376 KB
testcase_09 AC 14 ms
5,376 KB
testcase_10 AC 15 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 13 ms
5,376 KB
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 13 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 10 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 12 ms
5,376 KB
testcase_22 AC 11 ms
5,376 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 14 ms
5,376 KB
testcase_26 AC 7 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 11 ms
5,376 KB
testcase_29 AC 12 ms
5,376 KB
testcase_30 AC 11 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 7 ms
5,376 KB
testcase_33 AC 8 ms
5,376 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 7 ms
5,376 KB
testcase_38 AC 14 ms
5,376 KB
testcase_39 AC 6 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)


int main(){
    int N; cin >> N;
    vector<int> Fdivcnt2(N + 1, 0);
    for (int i = 2; i <= N; i++) Fdivcnt2[i] = (i / 2) + Fdivcnt2[i / 2];
    
    int open_sum = 0;
    int prob0 = 0;
    int prob1 = 0;

    rep(i, N) {
        int b; cin >> b;
        if (Fdivcnt2[i] + Fdivcnt2[N - 1 - i] == Fdivcnt2[N - 1]) {
            if (b == 0) open_sum ^= 0;
            if (b == 1) open_sum ^= 1;
            if (b == -1) prob1 ++;
        }
        else{
            if (b == 0) open_sum ^= 0;
            if (b == 1) open_sum ^= 0;
            if (b == -1) prob0 ++;
        }
    }

    i64 ans[2] = {};
    ans[open_sum] = 1;
    rep(i, prob0) {
        rep(t, 2) ans[t] = ans[t] * 2 % 998244353;
    }
    rep(i, prob1) {
        ans[0] = ans[1] = (ans[0] + ans[1]) % 998244353;
    }

    cout << ans[1] << endl;
    return 0;
}




struct ios_do_not_sync {
    ios_do_not_sync() {
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0