結果

問題 No.1245 ANDORゲーム(calc)
ユーザー totori_nyaatotori_nyaa
提出日時 2020-10-02 22:01:23
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,360 bytes
コンパイル時間 2,880 ms
コンパイル使用メモリ 199,176 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-24 12:25:05
合計ジャッジ時間 6,950 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 3 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 3 ms
4,380 KB
testcase_11 AC 100 ms
4,376 KB
testcase_12 AC 100 ms
4,376 KB
testcase_13 AC 100 ms
4,384 KB
testcase_14 AC 100 ms
4,380 KB
testcase_15 AC 99 ms
4,376 KB
testcase_16 AC 100 ms
4,380 KB
testcase_17 AC 90 ms
4,376 KB
testcase_18 AC 84 ms
4,384 KB
testcase_19 AC 81 ms
4,504 KB
testcase_20 AC 92 ms
4,384 KB
testcase_21 AC 89 ms
4,424 KB
testcase_22 AC 82 ms
4,384 KB
testcase_23 AC 100 ms
4,380 KB
testcase_24 AC 100 ms
4,380 KB
testcase_25 AC 54 ms
4,380 KB
testcase_26 AC 56 ms
4,376 KB
testcase_27 AC 61 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h> 
using namespace std;
typedef long long ll;
template<typename T1,typename T2> bool chmin(T1 &a,T2 b){if(a<=b)return 0; a=b; return 1;}
template<typename T1,typename T2> bool chmax(T1 &a,T2 b){if(a>=b)return 0; a=b; return 1;}
ll dx[4]={0,1,-1,0};
ll dy[4]={1,0,0,-1};



signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << fixed << setprecision(20);


    ll n,q;
    cin>>n>>q;
    ll a[n];
    for(int i=0;i<n;i++)cin>>a[i];
    string s;
    cin>>s;
    ll t[44]={};
    ll k[44]={};
    for(ll i=0;i<44;i++){
        ll now = (1LL<<i);
        for(int j=0;j<n;j++){
            ll pre = now;
            if(s[j] == '0'){
                now &= a[j];
            }
            else{
                now |= ((1LL << i) & a[j]);
            }
            t[i] += abs(pre - now);
        }
    }
    for(ll i=0;i<44;i++){
        ll now = 0;
        for(int j=0;j<n;j++){
            ll pre = now;
            if(s[j] == '0'){
                now &= a[j];
            }
            else{
                now |= ((1LL << i) & a[j]);
            }
            k[i] += abs(pre - now);
        }
    }
    while(q--){
        ll x;
        cin>>x;
        ll ans = 0;
        for(ll i=0;i<44;i++){
            if(x & (1LL<<i))ans += t[i];
            else ans += k[i];
        }
        cout << ans << "\n";
    }

}
0