結果

問題 No.4 おもりと天秤
ユーザー uafr_csuafr_cs
提出日時 2015-05-29 02:42:38
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,387 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 78,532 KB
実行使用メモリ 46,496 KB
最終ジャッジ日時 2024-07-06 10:21:42
合計ジャッジ時間 11,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
41,036 KB
testcase_01 AC 88 ms
39,740 KB
testcase_02 AC 794 ms
40,988 KB
testcase_03 AC 98 ms
40,264 KB
testcase_04 AC 102 ms
41,672 KB
testcase_05 AC 111 ms
41,136 KB
testcase_06 AC 94 ms
40,432 KB
testcase_07 AC 113 ms
42,120 KB
testcase_08 AC 108 ms
41,884 KB
testcase_09 AC 113 ms
41,212 KB
testcase_10 AC 112 ms
41,176 KB
testcase_11 AC 105 ms
41,136 KB
testcase_12 AC 103 ms
41,180 KB
testcase_13 AC 105 ms
41,004 KB
testcase_14 AC 92 ms
39,824 KB
testcase_15 AC 107 ms
41,012 KB
testcase_16 AC 105 ms
41,264 KB
testcase_17 AC 102 ms
41,228 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;

public class Main {
	
	public static boolean dfs(int deep, int N, int purpose, int current, int[] array, int[] partial, boolean[] used){
		//System.out.println(deep + " " + purpose + " " + current);
		
		if(purpose == current){
			return true;
		}else if(purpose < current){
			return false;
		}else if(deep >= N){
			return false;
		}
		
		final int rest_max = partial[N] - partial[deep];
		if(current + rest_max < purpose){
			return false;
		}
		
		
		for(int i = deep; i < N; i++){
			if(!used[i]){
				used[i] = true;
				if(dfs(deep + 1, N, purpose, current + array[i], array, partial, used)){
					return true;
				}
				used[i] = false;
			}
		}
		
		return false;
	}
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		
		int[] arr = new int[N];
		for(int i = 0; i < N; i++){
			arr[i] = -sc.nextInt();
		}
		Arrays.sort(arr);
		for(int i = 0; i < N; i++){
			arr[i] = -arr[i];
		}
		
		int[] partial = new int[N + 1];
		for(int i = 1; i <= N; i++){
			partial[i] += partial[i - 1] + arr[i - 1];
		}
		
		final int sum = Arrays.stream(arr).sum();
		final int purpose = sum / 2;
		
		System.out.println((sum % 2) == 0 && dfs(0, N, purpose, 0, arr, partial, new boolean[N]) ? "possible" : "impossible");
	}
	
}
0