結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | dsytk7 |
提出日時 | 2018-02-14 23:07:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 834 bytes |
コンパイル時間 | 1,363 ms |
コンパイル使用メモリ | 168,304 KB |
実行使用メモリ | 785,448 KB |
最終ジャッジ日時 | 2024-06-02 12:21:38 |
合計ジャッジ時間 | 17,826 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for (int (i)=(0);(i)<(int)(n);++(i)) using ll = long long; using P = pair<int, int>; using namespace std; template<class T> void vin(vector<T>& v, int n) { v.resize(n); for (int i = 0; i < n; ++i) { cin >> v[i]; } } int dp[5010][40000]; int N; int A[5010]; bitset<40000> used; int solve(int idx, int xor_sum) { int& res = dp[idx][xor_sum]; if (~res) return res; if (idx >= N) { used[xor_sum] = 1; res = 1; } else { res = max(solve(idx+1, xor_sum), solve(idx+1, xor_sum xor A[idx])); } return res; } int main() { cin >> N; rep(i, N) cin >> A[i]; rep(i, N) rep(j, 40000) dp[i][j] = -1; fill(dp[0], dp[5001], -1); solve(0, 0); cout << used.count() << endl; return 0; }