結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | hokuto |
提出日時 | 2021-08-30 22:37:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 821 bytes |
コンパイル時間 | 715 ms |
コンパイル使用メモリ | 98,468 KB |
実行使用メモリ | 323,712 KB |
最終ジャッジ日時 | 2024-05-03 08:40:32 |
合計ジャッジ時間 | 8,076 ms |
ジャッジサーバーID (参考情報) |
judge5 / 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 | RE | - |
testcase_08 | AC | 326 ms
288,256 KB |
testcase_09 | AC | 228 ms
198,400 KB |
testcase_10 | AC | 279 ms
238,464 KB |
testcase_11 | AC | 355 ms
312,448 KB |
testcase_12 | RE | - |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 310 ms
323,712 KB |
testcase_15 | AC | 375 ms
323,584 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 81 ms
74,112 KB |
testcase_18 | RE | - |
testcase_19 | AC | 40 ms
37,888 KB |
ソースコード
#include <iostream> #include <utility> #include <vector> #include <string> #include <cmath> #include <algorithm> #include <functional> #include <iomanip> #include <map> #include <set> #include <queue> using namespace std; using ll = long long int; #define chmax(x,y) x = (x > (y)) ? x : (x = (y)); #define chmin(x,y) x = (x < (y)) ? x : (x = (y)); int main(int argc, char const *argv[]) { int N; cin >> N; vector<int> W(N); for(auto &e : W)cin >> e; vector<vector<int>> dp(N+1,vector<int>(pow(2,14)+1,0)); dp[0][0] = 1; for(int i=0;i<N;++i) { for(int j=0;j<=pow(2,14);++j) { if(dp[i][j]) { dp[i+1][j] = dp[i][j]; dp[i+1][j^W[i]] = dp[i][j]; } } } int answer = 0; for(int i=0;i<=pow(2,14);++i)answer += dp[N][i]; std::cout << answer << std::endl; }