結果
問題 | No.1245 ANDORゲーム(calc) |
ユーザー | umezo |
提出日時 | 2020-10-03 19:28:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 781 bytes |
コンパイル時間 | 2,174 ms |
コンパイル使用メモリ | 205,344 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 04:51:17 |
合計ジャッジ時間 | 7,168 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 194 ms
6,944 KB |
testcase_26 | AC | 203 ms
6,944 KB |
testcase_27 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:24:16: warning: integer overflow in expression of type 'int' results in '2147483647' [-Woverflow] 24 | int c=(1<<31)-1; | ~~~~~~~^~
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; int main(){ int n,q; cin>>n>>q; vector<int> A(n); rep(i,n) cin>>A[i]; string s; cin>>s; vector<int> D(q); rep(i,q) cin>>D[i]; vector<ll> B(31),C(31); int b=0; int c=(1<<31)-1; for(int i=0;i<n;i++){ int btmp=b,ctmp=c; if(s[i]=='0'){ b=b&A[i]; c=c&A[i]; } else{ b=b|A[i]; c=c|A[i]; } for(int j=0;j<31;j++){ B[j]+=abs((b&(1<<j))-(btmp&(1<<j))); C[j]+=abs((c&(1<<j))-(ctmp&(1<<j))); } } rep(i,q){ int ans=0; rep(j,31){ if(D[i]&(1<<j)) ans+=C[j]; else ans+=B[j]; } cout<<ans<<endl; } return 0; }