結果

問題 No.1707 Simple Range Reverse Problem
ユーザー ripityripity
提出日時 2021-11-07 20:27:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 3,508 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 57,168 KB
最終ジャッジ日時 2024-11-14 13:39:52
合計ジャッジ時間 8,312 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,172 KB
testcase_01 AC 189 ms
54,432 KB
testcase_02 AC 195 ms
54,516 KB
testcase_03 AC 197 ms
54,480 KB
testcase_04 AC 202 ms
56,520 KB
testcase_05 AC 199 ms
56,320 KB
testcase_06 AC 200 ms
56,848 KB
testcase_07 AC 202 ms
56,796 KB
testcase_08 AC 205 ms
57,064 KB
testcase_09 AC 227 ms
56,720 KB
testcase_10 AC 216 ms
56,936 KB
testcase_11 AC 220 ms
56,872 KB
testcase_12 AC 238 ms
57,168 KB
testcase_13 AC 238 ms
56,756 KB
testcase_14 AC 222 ms
56,936 KB
testcase_15 AC 239 ms
56,908 KB
testcase_16 AC 229 ms
56,868 KB
testcase_17 AC 219 ms
56,900 KB
testcase_18 AC 240 ms
57,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
        for( int t = 0; t < T; t++ ) {
            int N = sc.nextInt();
            int[] A = new int[2*N];
            int[] X = new int[2*N];
            boolean possible = false;
            boolean first = true;
            for( int i = 0; i < 2*N; i++ ) {
                A[i] = sc.nextInt()-1;
                X[i] = i%N;
                if( A[i] != i%N ) first = false;
            }
            for( int i = 0; i < N; i++ ) {
                rev(N,i,X);
                boolean frag = true;
                for( int j = 0; j < 2*N; j++ ) {
                    if( A[j] != X[j] ) frag = false;
                }
                if( frag ) possible = true;
                rev(N,i,X);
            }
            System.out.println( possible||first ? "Yes" : "No" );
        }
        
    }
    
    static void rev( int N, int k, int[] A ) {
        
        for( int i = 0; i <= N/2; i++ ) {
            int save = A[i+k];
            A[i+k] = A[N+k-i];
            A[N+k-i] = save;
        }
        
    }
    
}
0