結果

問題 No.411 昇順昇順ソート
ユーザー nCk_cvnCk_cv
提出日時 2016-08-28 01:11:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,031 ms / 2,000 ms
コード長 933 bytes
コンパイル時間 2,325 ms
コンパイル使用メモリ 77,448 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-11-08 20:12:21
合計ジャッジ時間 9,161 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,196 KB
testcase_01 AC 113 ms
39,916 KB
testcase_02 AC 129 ms
41,044 KB
testcase_03 AC 125 ms
41,048 KB
testcase_04 AC 114 ms
39,876 KB
testcase_05 AC 129 ms
41,300 KB
testcase_06 AC 130 ms
41,332 KB
testcase_07 AC 130 ms
41,068 KB
testcase_08 AC 129 ms
41,368 KB
testcase_09 AC 117 ms
39,988 KB
testcase_10 AC 132 ms
41,068 KB
testcase_11 AC 127 ms
40,960 KB
testcase_12 AC 127 ms
41,072 KB
testcase_13 AC 129 ms
41,420 KB
testcase_14 AC 123 ms
40,108 KB
testcase_15 AC 127 ms
41,108 KB
testcase_16 AC 129 ms
41,216 KB
testcase_17 AC 128 ms
41,336 KB
testcase_18 AC 129 ms
40,952 KB
testcase_19 AC 129 ms
41,428 KB
testcase_20 AC 127 ms
41,216 KB
testcase_21 AC 119 ms
40,112 KB
testcase_22 AC 124 ms
41,040 KB
testcase_23 AC 120 ms
39,956 KB
testcase_24 AC 119 ms
40,184 KB
testcase_25 AC 131 ms
41,336 KB
testcase_26 AC 129 ms
41,012 KB
testcase_27 AC 173 ms
41,172 KB
testcase_28 AC 1,031 ms
41,492 KB
testcase_29 AC 346 ms
41,052 KB
testcase_30 AC 148 ms
41,400 KB
testcase_31 AC 149 ms
41,264 KB
testcase_32 AC 127 ms
41,140 KB
testcase_33 AC 121 ms
40,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
		static int INF = 2 << 27;
		public static void main(String[] args) {
			Scanner sc = new Scanner(System.in);
			int N = sc.nextInt();
			int K = sc.nextInt();
			int ans = dfs(0,K,new int[N],new boolean[N],false);
			System.out.println(ans);
		}
		static int dfs(int a, int b, int[] c, boolean[] d, boolean e) {
			//System.out.println(a);
			if(a == 0) {
				c[a] = b;
				d[b-1] = true;
				return dfs(a+1,b,c,d,e);
			}
			if(a == c.length) {
				if(e)
				return 1;
				return 0;
			}
			if(e) {
				for(int i = 0; i < d.length; i++) {
					if(!d[i] && c[a-1] > i+1) return 0;
				}
			}
			
			int ret = 0;
			for(int i = 0; i < c.length; i++) {
				if(d[i]) continue;
				boolean nex = e;
				if(c[a-1] > i+1) {
					if(e) continue;
					nex = true;
				}
				c[a] = i+1;
				d[i] = true;
				ret += dfs(a+1,b,c,d,nex);
				c[a] = 0;
				d[i] = false;
			}
			return ret;
		}

}
0