結果

問題 No.918 LISGRID
ユーザー 37zigen37zigen
提出日時 2020-03-11 15:37:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,620 bytes
コンパイル時間 2,756 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 49,312 KB
最終ジャッジ日時 2024-11-16 00:16:10
合計ジャッジ時間 17,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
42,444 KB
testcase_01 AC 365 ms
47,720 KB
testcase_02 AC 300 ms
44,824 KB
testcase_03 AC 341 ms
47,344 KB
testcase_04 AC 300 ms
45,196 KB
testcase_05 AC 369 ms
47,224 KB
testcase_06 AC 372 ms
48,868 KB
testcase_07 AC 475 ms
49,312 KB
testcase_08 AC 397 ms
48,584 KB
testcase_09 WA -
testcase_10 AC 360 ms
48,944 KB
testcase_11 AC 367 ms
47,468 KB
testcase_12 AC 391 ms
47,784 KB
testcase_13 AC 370 ms
48,364 KB
testcase_14 AC 476 ms
49,264 KB
testcase_15 AC 475 ms
49,216 KB
testcase_16 AC 328 ms
47,036 KB
testcase_17 AC 380 ms
48,596 KB
testcase_18 WA -
testcase_19 AC 289 ms
44,188 KB
testcase_20 AC 390 ms
49,052 KB
testcase_21 AC 292 ms
44,700 KB
testcase_22 AC 292 ms
44,224 KB
testcase_23 AC 301 ms
46,680 KB
testcase_24 AC 202 ms
43,052 KB
testcase_25 AC 189 ms
42,908 KB
testcase_26 AC 168 ms
42,552 KB
testcase_27 AC 167 ms
42,244 KB
testcase_28 AC 165 ms
42,232 KB
testcase_29 AC 166 ms
42,240 KB
testcase_30 WA -
testcase_31 AC 156 ms
42,300 KB
testcase_32 AC 166 ms
42,432 KB
testcase_33 AC 165 ms
42,596 KB
testcase_34 AC 205 ms
42,964 KB
testcase_35 AC 247 ms
43,340 KB
testcase_36 AC 197 ms
42,664 KB
testcase_37 AC 381 ms
48,808 KB
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

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++;
						}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