結果

問題 No.2535 多重同値
ユーザー tama04tama04
提出日時 2023-11-10 22:20:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,187 bytes
コンパイル時間 1,861 ms
コンパイル使用メモリ 174,688 KB
実行使用メモリ 10,772 KB
最終ジャッジ日時 2023-11-10 22:20:28
合計ジャッジ時間 6,248 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,772 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 1 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,676 KB
testcase_06 AC 2 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 AC 2 ms
6,676 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } else { return false; } }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } else { return false; } }
#define rep(i, s, n) for(int i = (s); i < n; i++) 
#define reps(i, s, n) for(int i = (s); i <= n; i++) 
#define rrep(i, n, s) for(int i = n; i >= (s); i--)
#define all(x) (x).begin(), (x).end()
#define print(V) for (int z = 0; z < (V).size(); z++) { cout << V[z] << " "; } cout << endl;
#define MOD 998244353
#define MOD2 1000000007
#define INF 1LL << 60
#define PI acos(-1)

vector<bool> p;

bool solve(int l, int r) {
	if (l == r) {
		return p[l];
	}

	return p[l] & solve(l + 1, r);
}

int main(void) {
	int n;
	cin >> n;

	string s;
	p.resize(n + 1);
	rep(i, 0, n) {
		cin >> s;
		if (s == "Yes") {
			p[i + 1] = true;
		}
		else {
			p[i + 1] = false;
		}
	}

	vector<bool> ans;
	reps(i, 1, n) {
		int l = 1, r = i;

		ans.push_back(solve(l, r));
	}

	for (bool res : ans) {
		if (res) {
			cout << "Yes" << endl;
		}
		else {
			cout << "No" << endl;
		}
	}

	return 0;
}
0