結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー k_6101k_6101
提出日時 2019-12-13 00:11:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 2,495 bytes
コンパイル時間 2,838 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 54,868 KB
最終ジャッジ日時 2024-06-26 00:20:08
合計ジャッジ時間 6,717 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,312 KB
testcase_01 AC 135 ms
54,188 KB
testcase_02 AC 135 ms
53,940 KB
testcase_03 AC 135 ms
54,012 KB
testcase_04 AC 135 ms
54,172 KB
testcase_05 AC 138 ms
54,048 KB
testcase_06 AC 142 ms
53,752 KB
testcase_07 AC 143 ms
54,460 KB
testcase_08 AC 149 ms
54,116 KB
testcase_09 AC 152 ms
54,452 KB
testcase_10 AC 156 ms
54,072 KB
testcase_11 AC 144 ms
53,960 KB
testcase_12 AC 148 ms
54,360 KB
testcase_13 AC 171 ms
54,836 KB
testcase_14 AC 169 ms
54,536 KB
testcase_15 AC 203 ms
54,868 KB
testcase_16 AC 143 ms
54,176 KB
testcase_17 AC 156 ms
54,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.InputStream;
import java.io.PrintWriter;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.PriorityQueue;
import java.util.Scanner;
import java.util.Set;
import java.util.Stack;
import java.util.TreeMap;
import java.util.TreeSet;

import static java.util.Comparator.*;

public class Main {
    public static void main(String[] args) {
        PrintWriter out = new PrintWriter(System.out);
        Solver solver = new Solver(System.in, out);
        solver.solve();
        out.close();
    }
}
class Solver {
	Scanner sc;
	PrintWriter out;
    public Solver(InputStream in, PrintWriter out) {
    	sc = new Scanner(in);
    	this.out = out;
    }
    // ==================================================================
    Map<Integer, List<PP>> map = new TreeMap<>(Collections.reverseOrder());
    public void solve() {
    	int N = Integer.parseInt(sc.next());
    	int LB = Integer.parseInt(sc.next());
    	if(LB != 0)		LB -= 1;
    	int RB = Integer.parseInt(sc.next()) - 1;
    	int xl, yu, xr, yd;
    	List<PP> list;
    	for (int i = 0; i < N; i++) {
			xl = Integer.parseInt(sc.next()) - 1;
			yu = Integer.parseInt(sc.next()) - 1;
			xr = Integer.parseInt(sc.next()) - 1;
			yd = Integer.parseInt(sc.next()) - 1;
			list = map.get(yd);
			if(list == null) {
				list = new ArrayList<>();
				map.put(yd, list);
			}
			list.add(new PP(i, xl, xr));
		}
    	int[] BBB = new int[2000];
    	for (int i = LB; i <= RB; i++)	BBB[i] = 1;
    	boolean f;
    	int[] ans = new int[N];
    	for (int key : map.keySet()) {
    		list = map.get(key);
    		for(PP pp : list) {
	    		xl = pp.xl;
	    		xr = pp.xr;
	    		f = false;
//	    		out.println("チェック  yd = " + key + "  xl = " + xl + "  xr = " + xr);
				for (int i = xl; i <= xr; i++) {
					if(i < 0 || i >= 1280)	continue;
//					out.println("  BBB[" + i + "] = " + BBB[i]);
					if(BBB[i] == 1)	f = true;
					BBB[i] = 0;
				}
//				out.println("結果	no = " + pp.no + " f = " + f);
				if(f)	ans[pp.no] = 1;
    		}
		}
    	for (int i = 0; i < N; i++)	out.println(ans[i]);
    }
    // Set に入れるなら PPKEY を使う!
    class PP{
    	public int no, xl, xr;
    	public PP(int no, int xl, int xr) {
    		this.no = no;
    		this.xl = xl;
    		this.xr = xr;
    	}
    }
}

0