結果

問題 No.1493 隣接xor
ユーザー 👑 NachiaNachia
提出日時 2021-12-04 13:30:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 853 ms
コンパイル使用メモリ 89,300 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-07-06 18:43:53
合計ジャッジ時間 3,690 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 108 ms
17,280 KB
testcase_04 AC 106 ms
17,280 KB
testcase_05 AC 107 ms
17,280 KB
testcase_06 AC 111 ms
17,280 KB
testcase_07 AC 105 ms
17,152 KB
testcase_08 AC 105 ms
17,280 KB
testcase_09 AC 104 ms
17,280 KB
testcase_10 AC 102 ms
17,280 KB
testcase_11 AC 106 ms
17,280 KB
testcase_12 AC 104 ms
17,280 KB
testcase_13 AC 26 ms
6,940 KB
testcase_14 AC 14 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 50 ms
10,496 KB
testcase_21 AC 56 ms
11,520 KB
testcase_22 AC 37 ms
8,960 KB
testcase_23 AC 47 ms
10,624 KB
testcase_24 AC 98 ms
16,768 KB
testcase_25 AC 37 ms
8,832 KB
testcase_26 AC 61 ms
12,160 KB
testcase_27 AC 22 ms
6,940 KB
testcase_28 AC 90 ms
15,872 KB
testcase_29 AC 60 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>

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++)


const u64 MOD = 1000000007;


int main(){
    int N; cin >> N;
    vector<i64> A(N+1, 0);
    rep(i,N) cin >> A[i+1];
    rep(i,N) A[i+1] ^= A[i];
    map<i64, u64> G;
    u64 ans = 1;
    for(int i=1; i<=N-1; i++){
        i64 a = A[i];
        u64& g = G[a];
        u64 c = (ans + MOD - g) % MOD;
        g = ans;
        ans = (ans + c) % MOD;
    }
    cout << ans << 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