結果

問題 No.332 数列をプレゼントに
ユーザー ぴろずぴろず
提出日時 2015-12-25 01:47:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 954 ms / 2,000 ms
コード長 1,692 bytes
コンパイル時間 2,739 ms
コンパイル使用メモリ 85,524 KB
実行使用メモリ 176,464 KB
最終ジャッジ日時 2024-06-06 15:27:41
合計ジャッジ時間 13,965 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,476 KB
testcase_01 AC 108 ms
39,868 KB
testcase_02 AC 125 ms
41,300 KB
testcase_03 AC 125 ms
41,464 KB
testcase_04 AC 129 ms
41,656 KB
testcase_05 AC 257 ms
56,460 KB
testcase_06 AC 249 ms
56,344 KB
testcase_07 AC 292 ms
66,380 KB
testcase_08 AC 319 ms
65,612 KB
testcase_09 AC 164 ms
42,380 KB
testcase_10 AC 155 ms
43,596 KB
testcase_11 AC 222 ms
56,316 KB
testcase_12 AC 205 ms
52,564 KB
testcase_13 AC 238 ms
56,640 KB
testcase_14 AC 240 ms
56,144 KB
testcase_15 AC 166 ms
44,100 KB
testcase_16 AC 131 ms
41,612 KB
testcase_17 AC 131 ms
41,292 KB
testcase_18 AC 481 ms
97,460 KB
testcase_19 AC 125 ms
40,900 KB
testcase_20 AC 176 ms
48,536 KB
testcase_21 AC 162 ms
42,736 KB
testcase_22 AC 166 ms
44,244 KB
testcase_23 AC 249 ms
56,572 KB
testcase_24 AC 245 ms
56,268 KB
testcase_25 AC 238 ms
56,472 KB
testcase_26 AC 239 ms
56,348 KB
testcase_27 AC 254 ms
56,644 KB
testcase_28 AC 249 ms
56,468 KB
testcase_29 AC 250 ms
56,292 KB
testcase_30 AC 252 ms
56,236 KB
testcase_31 AC 245 ms
56,364 KB
testcase_32 AC 245 ms
56,488 KB
testcase_33 AC 149 ms
41,208 KB
testcase_34 AC 158 ms
41,280 KB
testcase_35 AC 954 ms
176,464 KB
testcase_36 AC 120 ms
41,156 KB
testcase_37 AC 130 ms
41,796 KB
testcase_38 AC 129 ms
41,280 KB
testcase_39 AC 126 ms
41,352 KB
testcase_40 AC 133 ms
41,392 KB
testcase_41 AC 136 ms
41,664 KB
testcase_42 AC 126 ms
41,188 KB
testcase_43 AC 144 ms
42,276 KB
testcase_44 AC 153 ms
41,888 KB
testcase_45 AC 299 ms
66,400 KB
testcase_46 AC 125 ms
40,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no332;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {
	public static final int MAX = 100000;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long x = sc.nextLong();
		ArrayList<Pair> a = new ArrayList<>(); //i,a
		for(int i=0;i<n;i++) {
			int aa = sc.nextInt();
			a.add(new Pair(i,aa));
		}
		Collections.sort(a,(xx,yy)->Integer.compare(xx.a, yy.a));
		int n2 = 0;
		int max2 = 0;
		for(Pair p:a) {
			if (p.a <= MAX) {
				n2++;
				max2 += p.a;
			}else{
				break;
			}
		}
		boolean[][] dp = new boolean[n2+1][max2+1];
		dp[0][0] = true;
		for(int i=1;i<=n2;i++) {
			int w = a.get(i-1).a;
			for(int j=max2;j>=0;j--) {
				if (j >= w) {
					dp[i][j] |= dp[i-1][j-w];
				}
				dp[i][j] |= dp[i-1][j];
			}
		}
		int n3 = n - n2;
		for(int i=0;i<1<<n3;i++) {
			long sum = 0;
			for(int j=0;j<n3;j++) {
				if ((i>>j&1)>0) {
					sum += a.get(n2 + j).a;
				}
			}
			if (sum > x) {
				continue;
			}
			if (x - sum <= max2 && dp[n2][(int) (x-sum)]) {
				boolean[] ans = new boolean[n];
				for(int j=0;j<n3;j++) {
					if ((i>>j&1)>0) {
						ans[a.get(n2+j).i] = true;
					}
				}
				int now = (int) (x - sum);
				for(int i2=n2;i2>=1;i2--) {
					int w = a.get(i2-1).a;
					if (now >= w && dp[i2-1][now-w]) {
						ans[a.get(i2-1).i] = true;
						now -= w;
					}
				}
				StringBuilder sb = new StringBuilder();
				for(int j=0;j<n;j++) {
					sb.append(ans[j] ? 'o' : 'x');
				}
				System.out.println(sb);
				return;
			}
		}
		System.out.println("No");
	}

}
class Pair {
	int i,a;
	public Pair(int i,int a) {
		this.i = i;
		this.a = a;
	}
}
0