結果

問題 No.1355 AND OR GAME
ユーザー blackyukiblackyuki
提出日時 2021-01-15 22:54:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 904 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 203,776 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-05-05 00:54:50
合計ジャッジ時間 19,530 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 2 ms
5,376 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 2 ms
5,376 KB
testcase_38 WA -
testcase_39 AC 49 ms
5,376 KB
testcase_40 AC 64 ms
5,376 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 80 ms
5,376 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 52 ms
5,376 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 2 ms
5,376 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 124 ms
5,504 KB
testcase_56 AC 118 ms
5,504 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 2 ms
5,376 KB
testcase_60 WA -
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 61 ms
5,376 KB
testcase_63 WA -
testcase_64 AC 121 ms
5,504 KB
testcase_65 WA -
testcase_66 AC 42 ms
5,376 KB
testcase_67 WA -
testcase_68 WA -
testcase_69 AC 2 ms
5,376 KB
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 AC 129 ms
5,504 KB
testcase_74 WA -
testcase_75 WA -
testcase_76 AC 131 ms
5,504 KB
testcase_77 WA -
testcase_78 AC 2 ms
5,376 KB
testcase_79 AC 1 ms
5,376 KB
testcase_80 WA -
testcase_81 WA -
testcase_82 WA -
testcase_83 AC 119 ms
5,632 KB
testcase_84 WA -
testcase_85 WA -
testcase_86 WA -
testcase_87 WA -
testcase_88 WA -
testcase_89 WA -
testcase_90 WA -
testcase_91 WA -
testcase_92 WA -
testcase_93 WA -
testcase_94 WA -
testcase_95 WA -
testcase_96 WA -
testcase_97 WA -
testcase_98 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    long long N,X,Y;cin>>N>>X>>Y;
    vector<long long> A(N+1,X);for(int i=1;i<=N;i++)cin>>A[i];
    vector<int> target(60),P(N,1);for(int i=0;i<60;i++)target[i]=Y>>i&1;
    for(int i=N;i>=0;i--){
        bool S=false,T=false;
        for(int bit=0;bit<60;bit++)if(target[bit]!=2&&target[bit]!=(A[i]>>bit&1)){
            if(target[bit]==1)S=true;
            else T=true;
        }
        if((S&&T)||((S||T)&&i==0)){cout<<-1<<endl;return 0;}
        if(S){
            P[i-1]=2;
            for(int bit=0;bit<60;bit++)if(target[bit]==1)target[bit]=2;
        }
        else if(T){
            for(int bit=0;bit<60;bit++)if(target[bit]==0)target[bit]=2;
        }
        else{
            if(i)P[i-1]=3;
            for(int j=0;j<N;j++){
                if(j)cout<<' ';cout<<P[j];
            }cout<<endl;
            return 0;
        }
    }
}
0