結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー uafr_cs
提出日時 2018-04-27 22:55:58
言語 Java
(openjdk 23)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 1,082 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 77,948 KB
実行使用メモリ 42,420 KB
最終ジャッジ日時 2024-06-27 22:08:42
合計ジャッジ時間 5,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.TreeSet;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		
		final int xLB = sc.nextInt();
		final int xRB = sc.nextInt();
		final int SIZE = 1280;
		
		int[] low_id = new int[SIZE + 1 + SIZE + SIZE];
		int[] low_height = new int[SIZE + 1 + SIZE + SIZE];
		Arrays.fill(low_id, -1);
		Arrays.fill(low_height, Integer.MIN_VALUE);
		
		for(int i = 0; i < N; i++) {
			final int xl = sc.nextInt() + SIZE;
			final int yu = sc.nextInt();
			final int xr = sc.nextInt() + SIZE;
			final int yd = sc.nextInt();
			
			for(int x = xl; x <= xr; x++) {
				if(low_height[x] < yd) {
					low_height[x] = yd;
					low_id[x] = i;
				}
			}
		}
		
		
		boolean[] hitted = new boolean[N];
		for(int x = SIZE + xLB; x <= SIZE + xRB; x++) {
			if(low_id[x] >= 0) { hitted[low_id[x]] = true; } 
		}
		
		for(int i = 0; i < N; i++) {
			System.out.println(hitted[i] ? 1 : 0);
		}
	}
}
0