結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tomorrowtomorrow
提出日時 2022-05-19 23:16:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 941 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 203,000 KB
実行使用メモリ 163,456 KB
最終ジャッジ日時 2024-09-19 04:01:14
合計ジャッジ時間 3,651 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 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 146 ms
145,408 KB
testcase_08 AC 134 ms
145,920 KB
testcase_09 AC 93 ms
100,992 KB
testcase_10 AC 111 ms
120,960 KB
testcase_11 AC 142 ms
157,952 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 149 ms
163,456 KB
testcase_15 AC 148 ms
163,456 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 34 ms
38,784 KB
testcase_18 AC 128 ms
141,952 KB
testcase_19 AC 17 ms
20,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
constexpr ll inf = (1LL << 62);
template <typename T>
bool chmax(T& a, const T& b)
{
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}
template <typename T>
bool chmin(T& a, const T& b)
{
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}
char dp[5010][1 << 15];
int main()
{
    ll n;
    cin >> n;
    vector<ll> a(n);
    for (ll i = 0; i < n; ++i) {
        cin >> a[i];
    }
    dp[0][0] = 1;
    for (ll i = 0; i < n; ++i) {
        for (ll j = 0; j < (1 << 15); ++j) {
            //if(dp[i][j] == 1){
            //    dp[i+1][j] = 1;
            //} else {
            //
            //}
            dp[i + 1][j] = dp[i][j ^ a[i]] | dp[i][j];
        }
    }
    ll cnt = 0;
    for (ll i = 0; i < (1 << 15); ++i) {
        if (dp[n][i] == 1) {
            cnt++;
        }
    }
    cout << cnt << endl;
}
0