結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー kusomushikusomushi
提出日時 2018-06-12 15:54:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 3,323 bytes
コンパイル時間 5,082 ms
コンパイル使用メモリ 84,068 KB
実行使用メモリ 53,472 KB
最終ジャッジ日時 2023-09-13 03:38:41
合計ジャッジ時間 5,297 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
50,444 KB
testcase_01 AC 56 ms
50,212 KB
testcase_02 AC 61 ms
50,596 KB
testcase_03 AC 55 ms
50,196 KB
testcase_04 AC 60 ms
50,468 KB
testcase_05 AC 71 ms
51,048 KB
testcase_06 AC 80 ms
52,304 KB
testcase_07 AC 64 ms
50,948 KB
testcase_08 AC 83 ms
52,588 KB
testcase_09 AC 68 ms
52,164 KB
testcase_10 AC 71 ms
51,664 KB
testcase_11 AC 70 ms
52,184 KB
testcase_12 AC 73 ms
51,860 KB
testcase_13 AC 103 ms
52,988 KB
testcase_14 AC 93 ms
52,928 KB
testcase_15 AC 122 ms
53,472 KB
testcase_16 AC 78 ms
52,632 KB
testcase_17 AC 101 ms
53,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.*;

public class Main {

    static int N;
    static int xLB;
    static int xRB;
    static Enemy[] E;
    final static int W = 1280;
    final static int H = 1680;

    public static void main(String[] args) {
        FastScanner sc = new FastScanner(System.in);
        N = sc.nextInt();
        xLB = sc.nextInt();
        xRB = sc.nextInt();
        E = new Enemy[N];
        for (int i = 0; i < N; i++) {
            E[i] = new Enemy(i, sc.nextInt(), sc.nextInt(), sc.nextInt(), sc.nextInt());
        }

        int[] array = solve();
        for (int i : array) {
            System.out.println( i );
        }
    }

    private static int[] solve() {
        Set<Integer> hit = new HashSet<>();

        for (int w = xLB; w <= xRB; w++) {
            final int fw = w;
            Arrays.sort(E, Comparator.comparingInt(e -> e.bottomOf(fw)));

            Enemy bottom = E[N-1];
            if( bottom.bottomOf(w) != -1 ) {
                hit.add(bottom.i);
            }
        }

        int[] ans = new int[N];
        for (int i = 0; i < N; i++) {
            ans[i] = hit.contains(i) ? 1 : 0;
        }
        return ans;
    }

    static class Enemy {
        int i;
        int XL, YU, XR, YD;

        public int bottomOf(int w) {
            if( XL <= w && w <= XR ) {
                return YD;
            } else {
                return -1;
            }
        }

        public Enemy(int i, int XL, int YU, int XR, int YD) {
            this.i = i;
            this.XL = XL;
            this.YU = YU;
            this.XR = XR;
            this.YD = YD;
        }
    }

    static class FastScanner {

        private BufferedReader reader;
        private StringTokenizer tokenizer;

        FastScanner(InputStream in) {
            reader = new BufferedReader(new InputStreamReader(in));
            tokenizer = null;
        }

        String next() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        String nextLine() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    return reader.readLine();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }

            return tokenizer.nextToken("\n");
        }

        long nextLong() {
            return Long.parseLong(next());
        }

        int nextInt() {
            return Integer.parseInt(next());
        }

        double nextDouble() {
            return Double.parseDouble(next());
        }

        int[] nextIntArray(int n) {
            int[] a = new int[n];
            for (int i = 0; i < n; i++)
                a[i] = nextInt();
            return a;
        }

        long[] nextLongArray(int n) {
            long[] a = new long[n];
            for (int i = 0; i < n; i++)
                a[i] = nextLong();
            return a;
        }
    }
}
0