結果

問題 No.625 ソンタクロース
ユーザー 37zigen37zigen
提出日時 2020-04-19 11:17:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 530 ms / 4,000 ms
コード長 937 bytes
コンパイル時間 2,674 ms
コンパイル使用メモリ 81,716 KB
実行使用メモリ 62,936 KB
最終ジャッジ日時 2024-10-04 20:44:09
合計ジャッジ時間 8,613 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,996 KB
testcase_01 AC 142 ms
54,676 KB
testcase_02 AC 148 ms
54,812 KB
testcase_03 AC 137 ms
54,700 KB
testcase_04 AC 151 ms
54,904 KB
testcase_05 AC 148 ms
54,832 KB
testcase_06 AC 136 ms
55,168 KB
testcase_07 AC 137 ms
54,744 KB
testcase_08 AC 149 ms
55,104 KB
testcase_09 AC 143 ms
54,724 KB
testcase_10 AC 153 ms
55,168 KB
testcase_11 AC 147 ms
55,040 KB
testcase_12 AC 127 ms
54,496 KB
testcase_13 AC 151 ms
54,040 KB
testcase_14 AC 152 ms
54,900 KB
testcase_15 AC 234 ms
59,604 KB
testcase_16 AC 220 ms
57,220 KB
testcase_17 AC 341 ms
60,612 KB
testcase_18 AC 530 ms
62,936 KB
testcase_19 AC 270 ms
60,708 KB
testcase_20 AC 270 ms
60,460 KB
testcase_21 AC 224 ms
60,124 KB
testcase_22 AC 430 ms
62,500 KB
testcase_23 AC 229 ms
59,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int M=sc.nextInt();
		int[][] a=new int[2][N];
		a[0][0]=M;
		for (int i=1;i<N;++i) {
			Arrays.fill(a[i%2], 0);
			int[][] x=new int[i][2];
			for (int j=0;j<i;++j) {
				x[j][0]=a[(i-1)%2][j];
				x[j][1]=j;
			}
			Arrays.sort(x, Comparator.comparing((int[] v)->v[0]).thenComparing(v->v[1]));
			int need=0;
			for (int j=0;j<(i+1)/2;++j) {
				need+=x[j][0]+1;
				a[i%2][x[j][1]]=x[j][0]+1;
			}
			if (need<=M) {
				a[i%2][i]=M-need;
			} else {
				a[i%2]=Arrays.copyOf(a[(i-1)%2], N);
				a[i%2][i]=-1;
			}
		}
		for (int i=0;i<N;++i) {
			System.out.print(a[(N-1)%2][N-1-i]+(i==N-1?"\n":" "));
		}
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}
0