結果
| 問題 |
No.2102 [Cherry Alpha *] Conditional Reflection
|
| コンテスト | |
| ユーザー |
momoyuu
|
| 提出日時 | 2022-10-15 00:39:39 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,416 bytes |
| コンパイル時間 | 4,002 ms |
| コンパイル使用メモリ | 250,932 KB |
| 実行使用メモリ | 16,512 KB |
| 最終ジャッジ日時 | 2024-06-26 18:40:55 |
| 合計ジャッジ時間 | 44,363 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 58 TLE * 1 -- * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
template<class t> using vc = vector<t>;
template<class t> using vvc = vc<vc<t>>;
using pi = pair<int,int>;
using pl = pair<ll,ll>;
using vi = vc<int>;
using vvi = vvc<int>;
using vl = vc<ll>;
using vvl = vvc<ll>;
#define rep(i,a,b) for (int i = (int)(a); i < (int)(b); i++)
#define irep(i,a,b) for (int i = (int)(a); i > (int)(b); i--)
#define all(a) a.begin(),a.end()
#define print(n) cout << n << '\n'
#define pritn(n) print(n)
#define printv(n,a) {copy(all(n),ostream_iterator<a>(cout," ")); cout<<"\n";}
#define printvv(n,a) {for(auto itr:n) printv(itr,a);}
#define rup(a,b) (a+b-1)/b
#define input(A,N) rep(i,0,N) cin>>A[i]
#define chmax(a,b) a = max(a,b)
#define chmin(a,b) a = min(a,b)
int main(){
cout << fixed << setprecision(15);
int n;
cin>>n;
set<string> d;
rep(i,0,n){
string now;
cin>>now;
bool p =false;
if(d.find(now)!=d.end()) p = true;
rep(i,0,now.size()-1){
swap(now[i],now[i+1]);
if(d.find(now)!=d.end()){
p = true;
swap(now[i],now[i+1]);
break;
}
swap(now[i],now[i+1]);
}
d.insert(now);
if(p) print("Yes");
else print("No");
}
//system("pause");
return 0;
}
momoyuu