結果
問題 | No.1355 AND OR GAME |
ユーザー | milanis48663220 |
提出日時 | 2021-05-11 22:15:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,366 bytes |
コンパイル時間 | 1,222 ms |
コンパイル使用メモリ | 122,988 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 05:03:23 |
合計ジャッジ時間 | 19,166 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,944 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,944 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 2 ms
6,940 KB |
testcase_38 | WA | - |
testcase_39 | AC | 16 ms
6,940 KB |
testcase_40 | AC | 23 ms
6,940 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 25 ms
6,944 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 19 ms
6,940 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | AC | 37 ms
6,944 KB |
testcase_56 | AC | 37 ms
6,944 KB |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | AC | 2 ms
6,940 KB |
testcase_60 | WA | - |
testcase_61 | AC | 2 ms
6,940 KB |
testcase_62 | AC | 19 ms
6,940 KB |
testcase_63 | WA | - |
testcase_64 | AC | 37 ms
6,944 KB |
testcase_65 | WA | - |
testcase_66 | AC | 14 ms
6,944 KB |
testcase_67 | WA | - |
testcase_68 | WA | - |
testcase_69 | AC | 2 ms
6,940 KB |
testcase_70 | WA | - |
testcase_71 | WA | - |
testcase_72 | WA | - |
testcase_73 | AC | 46 ms
6,944 KB |
testcase_74 | WA | - |
testcase_75 | WA | - |
testcase_76 | AC | 46 ms
6,944 KB |
testcase_77 | WA | - |
testcase_78 | AC | 2 ms
6,940 KB |
testcase_79 | AC | 2 ms
6,940 KB |
testcase_80 | WA | - |
testcase_81 | WA | - |
testcase_82 | WA | - |
testcase_83 | AC | 37 ms
6,944 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 | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; int n; ll x, y; vector<ll> a; vector<int> as_vec(ll x){ vector<int> v(60); for(int i = 0; i < 60; i++){ if(((ll)1<<i) & x) v[i] = 1; else v[i] = 0; } return v; } bool dfs(int i, vector<int> &p, vector<int> v){ // debug_value(i); if(i < 0) return false; auto u = as_vec(a[i]); bool ok_or = [&](){ for(int i = 0; i < 60; i++) { if(v[i] != 0) continue; if(u[i] == 1) return false; } return true; }(); bool ok_and = [&](){ for(int i = 0; i < 60; i++) { if(v[i] != 1) continue; if(u[i] == 0) return false; } return true; }(); if(ok_or && ok_and){ p[i] = 3; return true; } if(ok_or){ for(int i = 0; i < 60; i++){ if(v[i] == 1) v[i] = 2; } p[i] = 2; return dfs(i-1, p, v); } if(ok_and){ for(int i = 0; i < 60; i++){ if(v[i] == 0) v[i] = 2; } p[i] = 1; return dfs(i-1, p, v); } return false; } ll test(ll x, vector<int> p){ for(int i = 0; i < n; i++){ int t = p[i]; if(t == 1) x &= a[i]; if(t == 2) x |= a[i]; if(t == 3) x = a[i]; } return x; } void get_vec(vector<ll> &a){ int n = a.size(); for(int i = 0; i < n; i++) cin >> a[i]; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; cin >> n >> x >> y; a.resize(n); get_vec(a); vector<int> p(n, 1); vector<int> v = as_vec(y); if(dfs(n-1, p, v)) { for(int x : p) cout << x << ' '; cout << endl; }else{ cout << -1 << endl; } }