結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー |
![]() |
提出日時 | 2017-10-17 11:12:52 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
#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; }