結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー momoyuumomoyuu
提出日時 2022-10-15 00:39:39
言語 C++23
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,424 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 516 ms
10,496 KB
testcase_03 AC 584 ms
12,544 KB
testcase_04 AC 557 ms
10,368 KB
testcase_05 AC 443 ms
7,040 KB
testcase_06 AC 596 ms
10,752 KB
testcase_07 AC 280 ms
8,704 KB
testcase_08 AC 192 ms
5,376 KB
testcase_09 AC 473 ms
11,392 KB
testcase_10 AC 286 ms
5,888 KB
testcase_11 AC 183 ms
7,040 KB
testcase_12 AC 406 ms
9,728 KB
testcase_13 AC 639 ms
13,568 KB
testcase_14 AC 477 ms
8,704 KB
testcase_15 AC 656 ms
11,264 KB
testcase_16 AC 850 ms
15,104 KB
testcase_17 AC 195 ms
7,168 KB
testcase_18 AC 405 ms
9,984 KB
testcase_19 AC 309 ms
7,552 KB
testcase_20 AC 722 ms
14,208 KB
testcase_21 AC 333 ms
5,376 KB
testcase_22 AC 970 ms
16,512 KB
testcase_23 AC 931 ms
16,384 KB
testcase_24 AC 933 ms
16,384 KB
testcase_25 AC 928 ms
16,384 KB
testcase_26 AC 971 ms
16,384 KB
testcase_27 AC 964 ms
16,256 KB
testcase_28 AC 946 ms
16,384 KB
testcase_29 AC 938 ms
16,384 KB
testcase_30 AC 926 ms
16,256 KB
testcase_31 AC 923 ms
16,384 KB
testcase_32 AC 929 ms
16,256 KB
testcase_33 AC 924 ms
16,384 KB
testcase_34 AC 938 ms
16,384 KB
testcase_35 AC 920 ms
16,384 KB
testcase_36 AC 974 ms
16,512 KB
testcase_37 AC 932 ms
16,384 KB
testcase_38 AC 924 ms
16,384 KB
testcase_39 AC 927 ms
16,256 KB
testcase_40 AC 943 ms
16,256 KB
testcase_41 AC 931 ms
16,256 KB
testcase_42 AC 628 ms
12,160 KB
testcase_43 AC 625 ms
12,160 KB
testcase_44 AC 620 ms
12,160 KB
testcase_45 AC 637 ms
12,160 KB
testcase_46 AC 602 ms
12,288 KB
testcase_47 AC 348 ms
8,704 KB
testcase_48 AC 336 ms
8,576 KB
testcase_49 AC 347 ms
8,704 KB
testcase_50 AC 355 ms
8,704 KB
testcase_51 AC 344 ms
8,576 KB
testcase_52 AC 30 ms
5,420 KB
testcase_53 AC 30 ms
5,376 KB
testcase_54 AC 30 ms
5,436 KB
testcase_55 AC 73 ms
5,376 KB
testcase_56 AC 72 ms
5,376 KB
testcase_57 AC 73 ms
5,376 KB
testcase_58 TLE -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0