結果
| 問題 |
No.2535 多重同値
|
| コンテスト | |
| ユーザー |
tama04
|
| 提出日時 | 2023-11-10 22:20:21 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,187 bytes |
| コンパイル時間 | 1,743 ms |
| コンパイル使用メモリ | 174,584 KB |
| 実行使用メモリ | 11,424 KB |
| 最終ジャッジ日時 | 2024-09-26 01:45:46 |
| 合計ジャッジ時間 | 5,616 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 8 WA * 9 TLE * 1 -- * 2 |
ソースコード
#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;
}
tama04