結果

問題 No.918 LISGRID
ユーザー 37zigen37zigen
提出日時 2020-03-11 14:36:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,570 bytes
コンパイル時間 2,684 ms
コンパイル使用メモリ 84,180 KB
実行使用メモリ 61,288 KB
最終ジャッジ日時 2024-04-27 19:15:17
合計ジャッジ時間 14,551 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
55,160 KB
testcase_01 AC 322 ms
59,520 KB
testcase_02 WA -
testcase_03 AC 238 ms
59,140 KB
testcase_04 AC 239 ms
57,616 KB
testcase_05 AC 353 ms
59,632 KB
testcase_06 AC 340 ms
59,744 KB
testcase_07 AC 312 ms
58,312 KB
testcase_08 AC 325 ms
60,432 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 337 ms
59,528 KB
testcase_12 AC 339 ms
60,192 KB
testcase_13 AC 319 ms
59,976 KB
testcase_14 AC 351 ms
60,068 KB
testcase_15 AC 429 ms
59,296 KB
testcase_16 AC 273 ms
59,808 KB
testcase_17 AC 297 ms
60,368 KB
testcase_18 WA -
testcase_19 AC 226 ms
57,336 KB
testcase_20 AC 299 ms
59,948 KB
testcase_21 AC 235 ms
57,956 KB
testcase_22 AC 225 ms
57,680 KB
testcase_23 WA -
testcase_24 AC 174 ms
54,308 KB
testcase_25 AC 141 ms
54,620 KB
testcase_26 AC 127 ms
54,468 KB
testcase_27 AC 118 ms
54,164 KB
testcase_28 AC 137 ms
54,612 KB
testcase_29 AC 134 ms
55,116 KB
testcase_30 WA -
testcase_31 AC 136 ms
55,036 KB
testcase_32 AC 122 ms
54,296 KB
testcase_33 WA -
testcase_34 AC 173 ms
54,888 KB
testcase_35 AC 202 ms
54,140 KB
testcase_36 AC 149 ms
54,716 KB
testcase_37 AC 296 ms
59,720 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) {
					for(int i=h;i<H;++i) {
						if(B[w]>1) {
							m[i][w]=s++;
						}else m[i][w]=t--;
					}
				}
				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