結果
問題 | No.2309 [Cherry 5th Tune D] 夏の先取り |
ユーザー | milanis48663220 |
提出日時 | 2023-05-19 22:23:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,859 bytes |
コンパイル時間 | 1,484 ms |
コンパイル使用メモリ | 135,088 KB |
実行使用メモリ | 12,928 KB |
最終ジャッジ日時 | 2024-05-10 05:50:13 |
合計ジャッジ時間 | 11,207 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #include <atcoder/segtree> #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; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } int op(int x, int y){ return x+y; } int e(){ return 0; } using P = pair<int, bool>; using Seg = atcoder::segtree<int, op, e>; void solve(){ int n; cin >> n; vector<bool> x(n); set<P> st; for(int i = 0; i < n; i++){ string s; cin >> s; x[i] = s[0] == 'T'; st.insert({i, x[i]}); } Seg seg(vector<int>(n-1, 1)); vector<string> y(n-1); vector<int> s(n-1); for(int i = 0; i < n-1; i++) cin >> y[i]; for(int i = 0; i < n-1; i++) { cin >> s[i]; } for(int i = 0; i < n-1; i++){ auto g = [&](int x){ return x < s[i]; }; int c = seg.max_right(0, g); bool ans = false; auto p = st.upper_bound({c, true}); assert(p != st.end()); auto [ir, fr] = *p; auto [il, fl] = *prev(p); assert(il <= c); assert(ir == c+1); assert(seg.prod(0, c+1) == s[i]); st.erase({ir, fr}); st.erase({il, fl}); if(y[i] == "and"){ ans = (fl&&fr); }else if(y[i] == "or"){ ans = (fl||fr); }else if(y[i] == "xor"){ ans = (fl!=fr); }else{ if(fl) ans = fr; ans = true; } st.insert({il, ans}); seg.set(c, 0); // for(auto [i, f]: st) cout << f << ' '; // cout << endl; } assert(st.begin()->first == 0); if(st.begin()->second){ cout << "True\n"; }else{ cout << "False\n"; } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int t; cin >> t; while(t--) solve(); }