結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー sei0osei0o
提出日時 2017-10-17 11:12:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,091 ms / 5,000 ms
コード長 796 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 153,344 KB
最終ジャッジ日時 2024-06-30 03:17:14
合計ジャッジ時間 9,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 1,073 ms
153,344 KB
testcase_08 AC 979 ms
96,044 KB
testcase_09 AC 670 ms
64,512 KB
testcase_10 AC 813 ms
77,056 KB
testcase_11 AC 1,077 ms
99,968 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1,031 ms
23,680 KB
testcase_15 AC 1,091 ms
103,552 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 243 ms
25,472 KB
testcase_18 AC 970 ms
129,472 KB
testcase_19 AC 120 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <vector>
#include <cmath>
#include <algorithm>
#include <map>
#include <numeric>

using namespace std;
using ll = long long;
const ll INF = 1e9;
const ll MOD = 1e9 + 7;

bool dp[5010][165000]; // dp[i][k] = a[0] ~ a[i] までで k が作れるか

int main() {
    int N;
    cin >> N;
    ll a[N];
    for (int i = 0; i < N; i++) {
        cin >> a[i];
    }

    dp[0][0] = true;
    for (int i = 0; i < N; i++) {
        for (int k = 0; k < 165000; k++) {
            if (dp[i][k]) {
                if ((k^a[i]) < 164000) dp[i+1][k ^ a[i]] = true;
                dp[i+1][k] = true;
            }
        }
    }

    int ans = 0;
    for (int i = 0; i < 165000; i++) {
        if (dp[N][i]) ans++;
    }
    cout << ans << endl;

    return 0;
}
0