結果

問題 No.918 LISGRID
ユーザー 37zigen37zigen
提出日時 2020-03-11 15:46:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 1,629 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 61,224 KB
最終ジャッジ日時 2024-04-27 19:19:13
合計ジャッジ時間 16,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
55,304 KB
testcase_01 AC 370 ms
59,928 KB
testcase_02 AC 299 ms
57,716 KB
testcase_03 AC 311 ms
60,904 KB
testcase_04 AC 294 ms
58,088 KB
testcase_05 AC 382 ms
58,712 KB
testcase_06 AC 380 ms
58,992 KB
testcase_07 AC 382 ms
58,608 KB
testcase_08 AC 404 ms
61,180 KB
testcase_09 AC 365 ms
58,800 KB
testcase_10 AC 379 ms
59,824 KB
testcase_11 AC 374 ms
60,504 KB
testcase_12 AC 376 ms
58,856 KB
testcase_13 AC 375 ms
58,912 KB
testcase_14 AC 453 ms
61,224 KB
testcase_15 AC 429 ms
58,736 KB
testcase_16 AC 321 ms
58,592 KB
testcase_17 AC 368 ms
60,092 KB
testcase_18 AC 351 ms
60,264 KB
testcase_19 AC 291 ms
57,752 KB
testcase_20 AC 374 ms
60,372 KB
testcase_21 AC 300 ms
57,560 KB
testcase_22 AC 280 ms
57,736 KB
testcase_23 AC 311 ms
58,532 KB
testcase_24 AC 211 ms
55,216 KB
testcase_25 AC 184 ms
55,048 KB
testcase_26 AC 169 ms
55,016 KB
testcase_27 AC 170 ms
54,760 KB
testcase_28 AC 169 ms
54,936 KB
testcase_29 AC 171 ms
55,212 KB
testcase_30 AC 172 ms
55,032 KB
testcase_31 AC 170 ms
54,700 KB
testcase_32 AC 169 ms
55,084 KB
testcase_33 AC 171 ms
54,992 KB
testcase_34 AC 210 ms
55,364 KB
testcase_35 AC 231 ms
55,524 KB
testcase_36 AC 204 ms
55,128 KB
testcase_37 AC 391 ms
60,012 KB
testcase_38 AC 328 ms
58,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int H=sc.nextInt();
		int W=sc.nextInt();
		int[] A=new int[H];
		int[] B=new int[W];
		int[][] m=new int[H][W];
		for(int h=0;h<H;++h)for(int w=0;w<W;++w)m[h][w]=-1;
		for(int i=0;i<A.length;++i) {
			A[i]=-sc.nextInt();
		}
		for(int i=0;i<B.length;++i) {
			B[i]=-sc.nextInt();
		}
		Arrays.sort(A);
		Arrays.sort(B);
		for(int i=0;i<A.length;++i)A[i]*=-1;
		for(int i=0;i<B.length;++i)B[i]*=-1;
		int s=1,t=H*W;
		for(int h=0;h<H;++h) {
			int bottom=0,top=0;
			for(int w=0;w<W;++w) {
				if(B[w]>1)++bottom;
				else ++top;
			}
			if(A[h]>1) {
				int left=Math.min(bottom,(top==0?A[h]:(A[h]-1)));
				int right=A[h]-left;
				for(int w=0;w<left;++w) {
					m[h][bottom-left+w]=s++;
				}
				for(int w=0;w<bottom-left;++w) {
					m[h][bottom-left-1-w]=s++;
				}
				for(int w=0;w<top-right;++w) {
					m[h][bottom+w]=t--;
				}
				for(int w=0;w<right;++w) {
					m[h][W-1-w]=t--;
				}
			}else {
				for(int w=0;w<W;++w) {
					s=t-(H-h)+1;
					int t_=t;
					for(int i=h;i<H;++i) {
						if(B[w]>1) {
							{m[i][w]=s++;B[w]--;}
						}else m[i][w]=t--;
					}
					t=t_-(H-h);
				}
				break;
			}
			for(int w=0;w<W;++w)B[w]=Math.max(B[w]-1, 1);
		}
		PrintWriter pw=new PrintWriter(System.out);
		for(int h=0;h<H;++h) {
			for(int w=0;w<W;++w) {
				pw.print(m[h][w]+(w==W-1?"\n":" "));
			}
		}
		pw.close();
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}


0