結果
問題 | No.1717 Levi-Civita Triangle |
ユーザー | hari64 |
提出日時 | 2021-10-22 22:21:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,021 bytes |
コンパイル時間 | 1,700 ms |
コンパイル使用メモリ | 170,980 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-23 05:58:07 |
合計ジャッジ時間 | 5,581 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 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 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 173 ms
5,376 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; // clang-format off namespace viewer {template<class T>string f(T i){string s=(i==1001001001||i==1001001001001001001?"inf":to_string(i));s=string(max(0,3-(int)s.size()),' ')+s;return s;} void view(const char c,string end="\n"){cerr<<c<<end;} void view(const string&s,string end="\n"){cerr<<s<<end;} template<class T>void view(const T&x,string end="\n"){cerr<<f(x)<<end;} template<class T0,class T1>void view(const pair<T0,T1>&p,string end="\n"){cerr<<"("<<f(get<0>(p))<<", "<<f(get<1>(p))<<")"<<end;} template<class T0,class T1>void view(const tuple<T0,T1>&p,string end="\n"){cerr<<"("<<f(get<0>(p))<<", "<<f(get<1>(p))<<")"<<end;} template<class T0,class T1,class T2>void view(const tuple<T0,T1,T2>&t,string end="\n"){cerr<<"("<<f(get<0>(t))<<", "<<f(get<1>(t));cerr<<", "<<f(get<2>(t))<<")"<<end;} template<class T0,class T1,class T2,class T3>void view(const tuple<T0,T1,T2,T3>&t,string end="\n"){cerr<<"("<<f(get<0>(t))<<", "<<f(get<1>(t))<<", "<<f(get<2>(t))<<", "<<f(get<3>(t))<<")"<<end;} template<class T>void view(const vector<T>&vx,string _end=""){bool is_value=is_integral<T>();cerr<<"{"<<(vx.empty()||is_value?"":"\n");for(const T&x:vx){if(!is_value)cerr<<" ";view(x,(is_value?",":"\n"));};cerr<<"}\n"<<_end;} template<class T>void view(const set<T>&s){vector<T>v(s.begin(),s.end());view(v);} template<class T>void view(const multiset<T>&s){vector<T>v(s.begin(),s.end());view(v);} template<class T>void view(const unordered_set<T>&s){vector<T>v(s.begin(),s.end());view(v);} template<class T>void view(const deque<T>&s){vector<T>v(s.begin(),s.end());view(v);} template<class T>void view(const priority_queue<T>&p){priority_queue<T>q=p;vector<T>v;while(!q.empty()){v.push_back(q.top());q.pop();}view(v);} template<class T,class U>void view(const map<T, U>&m){cerr<<"{"<<(m.empty()?"":"\n");for(const auto&kv:m){cerr<<" [";view(kv.first,"");cerr<<"] : ";view(kv.second,"");cerr<<"\n";}cerr<<"}\n";} template<class T>void _view(const T&var,string var_name,int line_num){cerr<<line_num<<": "<<var_name<<" = ";view(var);} void view_grid(const vector<vector<bool>>&vvb){cerr<<"\n";for(const vector<bool>&vb:vvb){for(const bool&b:vb)cerr<<(b?".":"#");cerr<<"\n";}}} //グリッド用 "."と"#"は交換可 // clang-format on #define chmax(a, b) a = (((a) < (b)) ? (b) : (a)) #define chmin(a, b) a = (((a) > (b)) ? (b) : (a)) #define debug(var) viewer::_view(var, #var, __LINE__) constexpr int INF = 1001001001; int main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; vector<int> As(2 * N + 1); for (int i = 0; i < 2 * N + 1; i++) { cin >> As[i]; } int cnt = 0; while (As.size() >= 3 && --cnt <= 3) { vector<int> Bs((int)As.size() - 2); for (int i = 1; i < (int)As.size() - 1; i++) { if (As[i - 1] == 0 && As[i] == 1 && As[i + 1] == 2) { Bs[i - 1] = 1; } else if (As[i - 1] == 1 && As[i] == 2 && As[i + 1] == 0) { Bs[i - 1] = 1; } else if (As[i - 1] == 2 && As[i] == 0 && As[i + 1] == 1) { Bs[i - 1] = 1; } else if (As[i - 1] == 2 && As[i] == 1 && As[i + 1] == 0) { Bs[i - 1] = 2; } else if (As[i - 1] == 1 && As[i] == 0 && As[i + 1] == 2) { Bs[i - 1] = 2; } else if (As[i - 1] == 0 && As[i] == 2 && As[i + 1] == 1) { Bs[i - 1] = 2; } else { Bs[i - 1] = 0; } } swap(As, Bs); // debug(As); } if (As.size() == 1) { cout << As[0] << endl; return 0; } bool is_0 = false; bool is_1 = false; bool is_2 = false; for (int i = 0; i < int(As.size()); i++) { if (As[i] == 0) { is_0 = true; } else if (As[i] == 1) { is_1 = true; } else { is_2 = true; } } assert(!(is_0 && is_1 && is_2)); // 未証明 cout << 0 << endl; return 0; }