結果

問題 No.411 昇順昇順ソート
ユーザー uafr_csuafr_cs
提出日時 2016-08-12 23:03:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 921 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 77,272 KB
実行使用メモリ 55,340 KB
最終ジャッジ日時 2024-11-07 15:43:23
合計ジャッジ時間 9,887 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
46,392 KB
testcase_01 AC 137 ms
41,468 KB
testcase_02 AC 132 ms
41,432 KB
testcase_03 AC 131 ms
41,264 KB
testcase_04 AC 129 ms
41,256 KB
testcase_05 AC 135 ms
41,156 KB
testcase_06 AC 132 ms
40,988 KB
testcase_07 AC 132 ms
41,456 KB
testcase_08 AC 132 ms
41,448 KB
testcase_09 AC 135 ms
41,368 KB
testcase_10 AC 135 ms
41,412 KB
testcase_11 AC 135 ms
41,428 KB
testcase_12 AC 132 ms
41,396 KB
testcase_13 AC 133 ms
41,176 KB
testcase_14 AC 125 ms
39,844 KB
testcase_15 AC 132 ms
41,028 KB
testcase_16 AC 119 ms
39,732 KB
testcase_17 AC 131 ms
41,344 KB
testcase_18 AC 134 ms
41,524 KB
testcase_19 AC 133 ms
41,056 KB
testcase_20 AC 130 ms
41,128 KB
testcase_21 AC 129 ms
41,012 KB
testcase_22 AC 133 ms
41,600 KB
testcase_23 AC 130 ms
41,324 KB
testcase_24 WA -
testcase_25 AC 132 ms
41,564 KB
testcase_26 AC 130 ms
41,232 KB
testcase_27 WA -
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static long dfs(long[] memo, final int N, final int bit, final int K){
		if(memo[bit] >= 0){
			return memo[bit];
		}
		
		//System.out.println(Integer.toBinaryString(bit));
		
		final int all_bit_up = (1 << (K + 1)) - 1;
		if(all_bit_up == bit){
			return memo[bit] = 0;
		}
		
		memo[bit] = 1;
		for(int k = K + 1; k < N; k++){
			if((bit & (1 << k)) != 0){ continue; }
			
			memo[bit] += dfs(memo, N, bit | (1 << k), k);
		}
		
		return memo[bit];
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int K = sc.nextInt() - 1;
		
		long[] memo = new long[1 << N];
		for(int i = 0; i < 1 << N; i++){
			Arrays.fill(memo, -1);
		}
		
		System.out.println(dfs(memo, N, 1 << K, K));
	}

}
0