結果

問題 No.2283 Prohibit Three Consecutive
ユーザー kabipoyokabipoyo
提出日時 2023-04-28 21:36:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,655 bytes
コンパイル時間 4,608 ms
コンパイル使用メモリ 265,632 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-04-28 23:16:24
合計ジャッジ時間 5,906 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 42 ms
9,940 KB
testcase_04 AC 43 ms
8,508 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 25 ms
14,336 KB
testcase_09 AC 25 ms
14,336 KB
testcase_10 AC 25 ms
14,336 KB
testcase_11 AC 25 ms
14,336 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef int64_t lint;
#define rep(i, n) for(int i=0; i<n; i++)
#define repx(i, l, n) for(int i=l; i<n; i++)
#define all(v) v.begin(), v.end()
#define show(x) cout << #x << ": " << x << endl;
#define list(x) cout << #x << ": " << x << "  ";
#define pb push_back
using vi = vector<lint>;
using vvi = vector<vector<lint>>;
template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); }
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; }
template<class T> inline void drop(T x) { cout << x << endl; exit(0); }
template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; }
constexpr lint LINF = LLONG_MAX/2;

int main() {
	lint T;
	cin >> T;

	rep(_, T) {
		lint N;
		string S;
		cin >> N >> S;
		lint a=0, b=0, c=0, x, y, z;
		vvi dp0(N+2, vi(3)), dp1(N+2, vi(3));
		rep(i, N+2) {
			if (S[i%N] == '0' || S[i%N] == '?') {
				if (i == 0 || dp1[i-1][0] || dp1[i-1][1]) {
					dp0[i][0] = 1;
				} else if (i && dp0[i-1][0]) {
					dp0[i][1] = 1;
				} else if (i && dp0[i-1][1]) {
					dp0[i][2] = 1;
				}
			}
			if (S[i%N] == '1' || S[i%N] == '?') {
				if (i == 0 || dp0[i-1][0] || dp0[i-1][1]) {
					dp1[i][0] = 1;
				} else if (i && dp1[i-1][0]) {
					dp1[i][1] = 1;
				} else if (i && dp1[i-1][1]) {
					dp1[i][2] = 1;
				}
			}
		}
		if (dp0[N+1][0] || dp0[N+1][1] || dp1[N+1][0] || dp1[N+1][1]) cout << "Yes" << endl;
		else cout << "No" << endl;
	}
}
0