結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー 37zigen37zigen
提出日時 2020-03-21 18:40:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,296 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 77,688 KB
実行使用メモリ 57,908 KB
最終ジャッジ日時 2024-06-02 10:55:22
合計ジャッジ時間 7,235 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
56,952 KB
testcase_01 AC 200 ms
57,188 KB
testcase_02 AC 197 ms
57,132 KB
testcase_03 AC 213 ms
57,124 KB
testcase_04 AC 222 ms
57,160 KB
testcase_05 AC 226 ms
57,272 KB
testcase_06 AC 238 ms
57,120 KB
testcase_07 AC 226 ms
57,176 KB
testcase_08 AC 233 ms
57,248 KB
testcase_09 AC 233 ms
57,152 KB
testcase_10 AC 224 ms
57,620 KB
testcase_11 AC 248 ms
57,440 KB
testcase_12 AC 261 ms
57,596 KB
testcase_13 AC 246 ms
57,676 KB
testcase_14 AC 269 ms
57,908 KB
testcase_15 AC 280 ms
57,692 KB
testcase_16 AC 229 ms
57,260 KB
testcase_17 AC 248 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		long t = System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis() - t);
	}
	
	Scanner sc = new Scanner(System.in);
	
	void run() {
		int N=sc.nextInt();
		int L=sc.nextInt();
		int R=sc.nextInt();
		int[][] map=new int[2700][1300];
		for(int i=0;i<map.length;++i)for(int j=0;j<map[i].length;++j)map[i][j]=-1;
		for(int n=0;n<N;++n) {
			int xl=Math.max(L,sc.nextInt());
			int yu=sc.nextInt()+501;
			int xr=Math.min(R,sc.nextInt());
			int yd=sc.nextInt()+501;
			for(int x=xl;x<=xr;++x) {
				for(int y=yu;y<=yd;++y) {
					if(map[y][x]!=-1)throw new AssertionError();
					map[y][x]=n;
				}
			}
		}
		boolean[] hit=new boolean[N];
		for(int i=0;i<map[map.length-1].length;++i)map[map.length-1][i]=-2;
		for(int h=map.length-2;h>=0;--h) {
			for(int w=0;w<map[h].length;++w) {
				if(map[h+1][w]!=-2)continue;
				if(map[h][w]==-1) {
					map[h][w]=-2;
				}else {
					hit[map[h][w]]=true;
				}
			}
		}
		for(int i=0;i<N;++i) {
			System.out.println(hit[i]?1:0);
		}
	}


	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0