結果
問題 | No.2283 Prohibit Three Consecutive |
ユーザー | milanis48663220 |
提出日時 | 2023-04-28 21:35:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 3,145 bytes |
コンパイル時間 | 1,184 ms |
コンパイル使用メモリ | 121,904 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-11-17 20:33:21 |
合計ジャッジ時間 | 1,747 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 6 ms
5,248 KB |
testcase_04 | AC | 6 ms
5,248 KB |
testcase_05 | AC | 19 ms
5,248 KB |
testcase_06 | AC | 19 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 7 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 5 ms
5,248 KB |
testcase_12 | AC | 17 ms
5,248 KB |
testcase_13 | AC | 32 ms
5,248 KB |
ソースコード
#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> #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; } bool dp[100000][2][2][2][2]; void solve(){ int n; cin >> n; string ss; cin >> ss; vector<int> s(n); for(int i = 0; i <= n; i++){ for(int j = 0; j < 2; j++){ for(int k = 0; k < 2; k++){ for(int l = 0; l < 2; l++){ for(int p = 0; p < 2; p++){ dp[i][j][k][l][p] = false; } } } } } for(int i = 0; i < n; i++){ if(ss[i] == '?') s[i] = -1; else s[i] = ss[i]-'0'; } for(int i = 0; i < 2; i++){ if(s[0] != -1 && s[0] != i) continue; for(int j = 0; j < 2; j++){ if(s[1] != -1 && s[1] != j) continue; dp[1][i][j][i][j] = true; } } for(int i = 2; i < n; i++){ for(int j = 0; j < 2; j++){ for(int k = 0; k < 2; k++){ for(int l = 0; l < 2; l++){ for(int p = 0; p < 2; p++){ if(!dp[i-1][j][k][l][p]) continue; for(int q = 0; q < 2; q++){ if(s[i] != -1 && s[i] != q) continue; if(l == p && p == q) continue; dp[i][j][k][p][q] = true; } } } } } } for(int j = 0; j < 2; j++){ for(int k = 0; k < 2; k++){ for(int l = 0; l < 2; l++){ for(int p = 0; p < 2; p++){ if(l == p && p == j) continue; if(p == j && j == k) continue; if(dp[n-1][j][k][l][p]){ cout << "Yes" << endl; return; } } } } } cout << "No" << endl; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int t; cin >> t; while(t--) solve(); }