結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー tentententen
提出日時 2021-03-16 12:18:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,859 bytes
コンパイル時間 3,073 ms
コンパイル使用メモリ 78,988 KB
実行使用メモリ 39,308 KB
最終ジャッジ日時 2024-11-07 22:48:51
合計ジャッジ時間 5,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
37,080 KB
testcase_01 AC 56 ms
37,100 KB
testcase_02 AC 58 ms
37,376 KB
testcase_03 AC 56 ms
37,248 KB
testcase_04 AC 70 ms
38,144 KB
testcase_05 AC 75 ms
38,100 KB
testcase_06 AC 86 ms
38,676 KB
testcase_07 AC 61 ms
37,016 KB
testcase_08 AC 68 ms
37,432 KB
testcase_09 AC 83 ms
38,680 KB
testcase_10 AC 62 ms
36,852 KB
testcase_11 AC 61 ms
37,264 KB
testcase_12 AC 62 ms
37,232 KB
testcase_13 AC 71 ms
38,196 KB
testcase_14 AC 88 ms
38,496 KB
testcase_15 AC 89 ms
39,308 KB
testcase_16 AC 77 ms
37,988 KB
testcase_17 AC 72 ms
38,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] first = br.readLine().split(" ", 3);
		int n = Integer.parseInt(first[0]);
		TreeSet<Integer> beam = new TreeSet<>();
		for (int i = Integer.parseInt(first[1]); i <= Integer.parseInt(first[2]); i++) {
		    beam.add(i);
		}
		Enemy[] enemies = new Enemy[n];
		PriorityQueue<Enemy> queue = new PriorityQueue<>();
		for (int i = 0; i < n; i++) {
		    String[] line = br.readLine().split(" ", 4);
		    enemies[i] = new Enemy(Integer.parseInt(line[0]), Integer.parseInt(line[1]), Integer.parseInt(line[2]));
		    queue.add(enemies[i]);
		}
		while (queue.size() > 0) {
		    Enemy e = queue.poll();
		    Integer left = beam.floor(e.right);
		    Integer right = beam.ceiling(e.left);
		    if ((left != null && left >= e.left) || (right != null && right <= e.right)) {
		        for (int i = e.left; i <= e.right; i++) {
		            beam.remove(i);
		        }
		        e.check();
		    }
		}
		StringBuilder sb = new StringBuilder();
		for (Enemy e : enemies) {
		    if (e.checked()) {
		        sb.append(1);
		    } else {
		        sb.append(0);
		    }
		    sb.append("\n");
		}
		System.out.print(sb);
   }
   
   static class Enemy implements Comparable<Enemy> {
       int left;
       int right;
       int hor;
       boolean hit;
       
       public Enemy(int left, int hor, int right) {
           this.left = left;
           this.hor = hor;
           this.right = right;
       }
       
       public int compareTo(Enemy another) {
           return - hor + another.hor;
       }
       
       public void check() {
           hit = true;
       }
       
       public boolean checked() {
           return hit;
       }
   }
}
0