結果

問題 No.1707 Simple Range Reverse Problem
ユーザー erbowlerbowl
提出日時 2022-08-21 09:43:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 1,523 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 203,228 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-10 02:36:53
合計ジャッジ時間 3,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main(){
    ll t;
    std::cin >> t;
    for (int iiii = 0; iiii < t; iiii++) {
        ll n;
        std::cin >> n;
        vector<ll> a(2*n),b(2*n);
        for (int i = 0; i < 2*n; i++) {
            std::cin >> a[i];
            a[i]--;
            if(i<n){
                b[i] = i;
            }else{
                b[i] = i-n;
            }
        }
        bool ok = false;
        bool tmp = true;
        for (int i = 0; i < n; i++) {
            if(a[i]==i&&a[i+n]==i){
                
            }else{
                tmp=false;
            }
        }
        ok = ok || tmp;
        // jでひっくり返したとする
        for (int j = 0; j < n; j++) {
            tmp = true;
            for (int i = 0; i < n*2; i++) {
                if(i<=j){
                    if(a[i]==i){
                        
                    }else{
                        tmp=false;
                    }
                }else if(i<=j+n){
                    if(a[i]==b[j+n-(i-j)]){
                        
                    }else{
                        tmp=false;
                    }
                }else {
                    if(a[i]==b[i]){
                        
                    }else{
                        tmp=false;
                    }
                }
            }
            ok = ok || tmp;
        }
        std::cout << (ok ? "Yes": "No") << std::endl;
    }
}
0