結果

問題 No.411 昇順昇順ソート
ユーザー uafr_csuafr_cs
提出日時 2016-08-12 22:55:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 988 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 77,428 KB
実行使用メモリ 478,080 KB
最終ジャッジ日時 2024-11-07 15:40:53
合計ジャッジ時間 13,735 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,424 KB
testcase_01 AC 128 ms
41,208 KB
testcase_02 AC 124 ms
41,256 KB
testcase_03 AC 124 ms
41,308 KB
testcase_04 AC 127 ms
41,156 KB
testcase_05 AC 121 ms
40,368 KB
testcase_06 AC 127 ms
41,632 KB
testcase_07 AC 114 ms
41,328 KB
testcase_08 AC 125 ms
41,388 KB
testcase_09 AC 125 ms
41,472 KB
testcase_10 AC 126 ms
41,368 KB
testcase_11 AC 116 ms
40,280 KB
testcase_12 AC 126 ms
41,336 KB
testcase_13 AC 128 ms
41,380 KB
testcase_14 AC 126 ms
41,660 KB
testcase_15 AC 119 ms
41,548 KB
testcase_16 AC 129 ms
41,224 KB
testcase_17 AC 126 ms
41,500 KB
testcase_18 AC 128 ms
41,384 KB
testcase_19 AC 134 ms
41,128 KB
testcase_20 AC 126 ms
41,556 KB
testcase_21 AC 120 ms
40,216 KB
testcase_22 AC 129 ms
41,128 KB
testcase_23 AC 131 ms
41,444 KB
testcase_24 WA -
testcase_25 AC 127 ms
41,664 KB
testcase_26 AC 123 ms
41,432 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 575 ms
228,124 KB
testcase_30 AC 1,109 ms
478,080 KB
testcase_31 AC 1,100 ms
477,636 KB
testcase_32 AC 1,093 ms
476,760 KB
testcase_33 AC 1,099 ms
477,948 KB
権限があれば一括ダウンロードができます

ソースコード

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][K] >= 0){
			return memo[bit][K];
		}
		
		boolean has_lower = false;
		for(int k = 1; k < K; k++){
			if((bit & (1 << k)) == 0){
				has_lower = true;
				break;
			}
		}
		
		if(!has_lower){
			return memo[bit][K] = 0;
		}
		
		memo[bit][K] = 1;
		for(int k = K + 1; k <= N; k++){
			if((bit & (1 << k)) != 0){ continue; }
			
			memo[bit][K] += dfs(memo, N, bit | (1 << k), k);
		}
		
		return memo[bit][K];
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int K = sc.nextInt();
		
		long[][] memo = new long[1 << (N + 1)][N + 1];
		for(int i = 0; i < 1 << (N + 1); i++){
			Arrays.fill(memo[i], -1);
		}
		
		System.out.println(dfs(memo, N, 1 << K, K));
	}

}
0