結果

問題 No.411 昇順昇順ソート
ユーザー uafr_csuafr_cs
提出日時 2016-08-12 23:07:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 876 bytes
コンパイル時間 2,489 ms
コンパイル使用メモリ 77,548 KB
実行使用メモリ 49,740 KB
最終ジャッジ日時 2024-11-07 15:44:15
合計ジャッジ時間 7,648 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,692 KB
testcase_01 AC 132 ms
41,572 KB
testcase_02 AC 129 ms
41,280 KB
testcase_03 AC 124 ms
41,164 KB
testcase_04 AC 128 ms
41,576 KB
testcase_05 AC 127 ms
40,984 KB
testcase_06 AC 113 ms
39,992 KB
testcase_07 AC 121 ms
40,296 KB
testcase_08 AC 113 ms
41,140 KB
testcase_09 AC 128 ms
41,200 KB
testcase_10 AC 129 ms
41,472 KB
testcase_11 AC 129 ms
41,212 KB
testcase_12 AC 127 ms
41,528 KB
testcase_13 AC 131 ms
41,300 KB
testcase_14 AC 131 ms
41,540 KB
testcase_15 AC 133 ms
41,344 KB
testcase_16 AC 131 ms
41,380 KB
testcase_17 AC 130 ms
41,428 KB
testcase_18 AC 129 ms
41,192 KB
testcase_19 AC 128 ms
41,524 KB
testcase_20 AC 118 ms
39,980 KB
testcase_21 AC 131 ms
40,928 KB
testcase_22 AC 116 ms
41,596 KB
testcase_23 AC 129 ms
41,120 KB
testcase_24 WA -
testcase_25 AC 131 ms
41,260 KB
testcase_26 AC 128 ms
41,396 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 141 ms
45,912 KB
testcase_30 AC 136 ms
49,612 KB
testcase_31 AC 136 ms
49,424 KB
testcase_32 AC 138 ms
49,628 KB
testcase_33 AC 123 ms
49,648 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] >= 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];
		Arrays.fill(memo, -1);
		
		System.out.println(dfs(memo, N, 1 << K, K));
	}

}
0