結果

問題 No.519 アイドルユニット
ユーザー tookunn_1213tookunn_1213
提出日時 2017-05-29 22:07:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 1,000 ms
コード長 2,076 bytes
コンパイル時間 2,458 ms
コンパイル使用メモリ 77,716 KB
実行使用メモリ 120,440 KB
最終ジャッジ日時 2024-04-14 06:38:44
合計ジャッジ時間 6,703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
120,136 KB
testcase_01 AC 144 ms
120,312 KB
testcase_02 AC 115 ms
71,236 KB
testcase_03 AC 75 ms
50,288 KB
testcase_04 AC 54 ms
50,196 KB
testcase_05 AC 52 ms
49,764 KB
testcase_06 AC 53 ms
49,912 KB
testcase_07 AC 54 ms
50,144 KB
testcase_08 AC 57 ms
50,156 KB
testcase_09 AC 58 ms
50,188 KB
testcase_10 AC 60 ms
49,860 KB
testcase_11 AC 68 ms
50,492 KB
testcase_12 AC 54 ms
50,200 KB
testcase_13 AC 67 ms
50,320 KB
testcase_14 AC 67 ms
50,196 KB
testcase_15 AC 69 ms
50,544 KB
testcase_16 AC 68 ms
50,476 KB
testcase_17 AC 76 ms
50,444 KB
testcase_18 AC 67 ms
50,564 KB
testcase_19 AC 66 ms
50,296 KB
testcase_20 AC 67 ms
50,236 KB
testcase_21 AC 64 ms
49,908 KB
testcase_22 AC 69 ms
50,192 KB
testcase_23 AC 66 ms
50,436 KB
testcase_24 AC 102 ms
55,792 KB
testcase_25 AC 94 ms
56,236 KB
testcase_26 AC 95 ms
56,140 KB
testcase_27 AC 107 ms
55,672 KB
testcase_28 AC 97 ms
55,568 KB
testcase_29 AC 142 ms
120,440 KB
testcase_30 AC 149 ms
120,384 KB
testcase_31 AC 143 ms
120,116 KB
testcase_32 AC 145 ms
120,364 KB
testcase_33 AC 55 ms
49,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.NoSuchElementException;

public class Main {
	int N;

	int[][] F;
	int[] dp;

	public int dfs(int S){

		if(S == (1 << N)-1)return 0;

		if(dp[S] != -1)return dp[S];

		int ret = 0;
		int index = -1;

		for(int i = 0;i < N;i++){
			if((S>>i&1) == 0){
				index = i;
				break;
			}
		}



		for(int i = 0;i < N;i++){
			if((S>>i&1)==1)continue;
			ret = Math.max(ret,dfs(S | 1 << index | 1 << i) + F[index][i]);
		}
		return dp[S] = ret;
	}
	public void solve() {
		N = nextInt();
		F = new int[N][N];
		for(int i = 0;i < N;i++){
			for(int j = 0;j < N;j++){
				F[i][j] = nextInt();
			}
		}

		dp = new int[1 << N];
		Arrays.fill(dp,-1);
		out.println(dfs(0));
	}

	public static void main(String[] args) {
		out.flush();
		new Main().solve();
		out.close();
	}

	/* Input */
	private static final InputStream in = System.in;
	private static final PrintWriter out = new PrintWriter(System.out);
	private final byte[] buffer = new byte[2048];
	private int p = 0;
	private int buflen = 0;

	private boolean hasNextByte() {
		if (p < buflen)
			return true;
		p = 0;
		try {
			buflen = in.read(buffer);
		} catch (IOException e) {
			e.printStackTrace();
		}
		if (buflen <= 0)
			return false;
		return true;
	}

	public boolean hasNext() {
		while (hasNextByte() && !isPrint(buffer[p])) {
			p++;
		}
		return hasNextByte();
	}

	private boolean isPrint(int ch) {
		if (ch >= '!' && ch <= '~')
			return true;
		return false;
	}

	private int nextByte() {
		if (!hasNextByte())
			return -1;
		return buffer[p++];
	}

	public String next() {
		if (!hasNext())
			throw new NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		int b = -1;
		while (isPrint((b = nextByte()))) {
			sb.appendCodePoint(b);
		}
		return sb.toString();
	}

	public int nextInt() {
		return Integer.parseInt(next());
	}

	public long nextLong() {
		return Long.parseLong(next());
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}
}
0