結果

問題 No.332 数列をプレゼントに
ユーザー ぴろずぴろず
提出日時 2015-12-25 01:21:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,656 bytes
コンパイル時間 2,771 ms
コンパイル使用メモリ 84,808 KB
実行使用メモリ 52,856 KB
最終ジャッジ日時 2024-09-18 23:32:54
合計ジャッジ時間 14,877 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
42,260 KB
testcase_01 AC 175 ms
42,216 KB
testcase_02 AC 146 ms
41,596 KB
testcase_03 AC 145 ms
41,476 KB
testcase_04 AC 141 ms
41,364 KB
testcase_05 AC 204 ms
48,328 KB
testcase_06 AC 212 ms
52,480 KB
testcase_07 AC 222 ms
52,524 KB
testcase_08 AC 210 ms
52,748 KB
testcase_09 AC 173 ms
42,900 KB
testcase_10 AC 175 ms
43,532 KB
testcase_11 AC 200 ms
48,044 KB
testcase_12 AC 224 ms
52,760 KB
testcase_13 AC 214 ms
52,800 KB
testcase_14 AC 195 ms
48,408 KB
testcase_15 AC 223 ms
52,584 KB
testcase_16 AC 217 ms
52,432 KB
testcase_17 AC 220 ms
52,340 KB
testcase_18 WA -
testcase_19 AC 217 ms
52,536 KB
testcase_20 AC 217 ms
52,640 KB
testcase_21 AC 222 ms
52,576 KB
testcase_22 AC 213 ms
52,440 KB
testcase_23 AC 218 ms
52,704 KB
testcase_24 AC 225 ms
52,588 KB
testcase_25 AC 223 ms
52,804 KB
testcase_26 WA -
testcase_27 AC 223 ms
52,472 KB
testcase_28 AC 221 ms
52,616 KB
testcase_29 AC 219 ms
52,548 KB
testcase_30 WA -
testcase_31 AC 224 ms
52,388 KB
testcase_32 AC 225 ms
52,484 KB
testcase_33 AC 230 ms
52,684 KB
testcase_34 AC 251 ms
52,832 KB
testcase_35 AC 218 ms
52,856 KB
testcase_36 AC 137 ms
41,392 KB
testcase_37 AC 224 ms
52,784 KB
testcase_38 AC 222 ms
52,580 KB
testcase_39 AC 222 ms
52,724 KB
testcase_40 AC 222 ms
52,432 KB
testcase_41 AC 225 ms
52,436 KB
testcase_42 AC 224 ms
52,416 KB
testcase_43 AC 230 ms
52,708 KB
testcase_44 AC 226 ms
52,752 KB
testcase_45 AC 227 ms
52,472 KB
testcase_46 AC 194 ms
48,628 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;
		for(Pair p:a) {
			if (p.a <= MAX) {
				n2++;
			}else{
				break;
			}
		}
		boolean[][] dp = new boolean[n2+1][MAX+1];
		dp[0][0] = true;
		for(int i=1;i<=n2;i++) {
			int w = a.get(i-1).a;
			for(int j=MAX;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 <= MAX && 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