結果

問題 No.332 数列をプレゼントに
ユーザー ぴろずぴろず
提出日時 2015-12-25 01:04:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,010 bytes
コンパイル時間 2,658 ms
コンパイル使用メモリ 91,584 KB
実行使用メモリ 229,664 KB
最終ジャッジ日時 2024-09-18 23:27:52
合計ジャッジ時間 18,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,100 KB
testcase_01 AC 113 ms
53,848 KB
testcase_02 AC 112 ms
54,220 KB
testcase_03 AC 123 ms
54,040 KB
testcase_04 AC 109 ms
53,204 KB
testcase_05 AC 214 ms
60,936 KB
testcase_06 WA -
testcase_07 AC 1,344 ms
152,076 KB
testcase_08 AC 323 ms
77,964 KB
testcase_09 AC 117 ms
54,052 KB
testcase_10 AC 130 ms
54,172 KB
testcase_11 AC 297 ms
65,108 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 197 ms
57,512 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 131 ms
54,504 KB
testcase_18 WA -
testcase_19 AC 131 ms
54,152 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 131 ms
54,004 KB
testcase_25 AC 126 ms
54,140 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 120 ms
53,532 KB
testcase_29 AC 126 ms
54,408 KB
testcase_30 WA -
testcase_31 AC 130 ms
54,176 KB
testcase_32 AC 128 ms
54,116 KB
testcase_33 AC 127 ms
54,232 KB
testcase_34 AC 124 ms
54,288 KB
testcase_35 AC 128 ms
54,284 KB
testcase_36 AC 99 ms
54,180 KB
testcase_37 WA -
testcase_38 AC 137 ms
54,224 KB
testcase_39 WA -
testcase_40 AC 358 ms
65,580 KB
testcase_41 AC 355 ms
65,480 KB
testcase_42 AC 359 ms
65,472 KB
testcase_43 AC 372 ms
65,772 KB
testcase_44 WA -
testcase_45 AC 151 ms
54,548 KB
testcase_46 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package no332;

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

public class Main {

	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 ones = 0;
		for(Pair p:a) {
			if (p.a == 1) {
				ones++;
			}else{
				break;
			}
		}
		int n2 = n - ones;
		int n3 = n2 / 2;
		int n4 = n2 - n3;
		ArrayList<Pair2> al = new ArrayList<>();
		for(int i=0;i<1<<n3;i++) {
			long sum = 0;
			for(int j=0;j<n3;j++) {
				if ((i>>j&1)==1) {
					sum += a.get(ones + j).a;
				}
			}
			al.add(new Pair2(i, sum));
		}
		Collections.sort(al,(xx,yy)->Long.compare(xx.sum, yy.sum));
		for(int i=0;i<1<<n4;i++) {
			long sum = 0;
			for(int j=0;j<n4;j++) {
				if ((i>>j&1)==1) {
					sum += a.get(ones + n3 + j).a;
				}
			}
			if (sum > x) {
				continue;
			}
			long key = x - sum;
			int l = 0;
			int r = al.size();
			while(l + 1 < r) {
				int c = (l + r) >>> 1;
				if (al.get(c).sum <= key) {
					l = c;
				}else{
					r = c;
				}
			}
			if (sum + al.get(l).sum + ones >= x) {
				boolean[] ans = new boolean[n];
				for(int j=0;j<n3;j++) {
					if ((al.get(l).mask >> j & 1) == 1) {
						ans[a.get(ones + j).i] = true;
					}
				}
				for(int j=0;j<n4;j++) {
					if ((i>>j&1)==1) {
						ans[a.get(ones + n3 + j).i] = true;
					}
				}
				for(int j=0;j<x-sum-al.get(l).sum;j++) {
					ans[j] = true;
				}
				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;
	}
}
class Pair2 {
	int mask;
	long sum;
	public Pair2(int mask,long sum) {
		this.mask = mask;
		this.sum = sum;
	}
}
0