結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
deark1414
|
| 提出日時 | 2017-10-05 17:13:12 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 613 bytes |
| コンパイル時間 | 821 ms |
| コンパイル使用メモリ | 63,700 KB |
| 実行使用メモリ | 323,712 KB |
| 最終ジャッジ日時 | 2024-11-16 21:13:14 |
| 合計ジャッジ時間 | 7,732 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 2 WA * 16 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:24:35: warning: iteration 65536 invokes undefined behavior [-Waggressive-loop-optimizations]
24 | if(dp[i][j]){
| ~~~~~~~^
main.cpp:23:33: note: within this loop
23 | for(int j = 0;j <= lim;j++){
| ~~^~~~~~
ソースコード
#include<iostream>
#include<vector>
#include<string.h>
#include<algorithm>
using namespace std;
const int lim = 1<<15 + 1;
bool dp[5001][lim];
int main(){
memset(dp,0,sizeof(dp));
int n;
cin >> n;
vector<int> a;
for(int i = 0;i < n;i++){
int ta;
cin >> ta;
if(find(a.begin(),a.end(),ta) == a.end()) a.push_back(ta);
}
dp[0][0] = true;
for(int i = 0;i < a.size();i++){
for(int j = 0;j <= lim;j++){
if(dp[i][j]){
dp[i+1][j] = true;
dp[i+1][j ^ a[i]] = true;
}
}
}
int ans = 0;
for(int i = 0;i <= 20;i++){
if(dp[a.size()][i]) ans++;
}
cout << ans << endl;
return 0;
}
deark1414