結果

問題 No.1137 Circles
ユーザー face4face4
提出日時 2020-08-04 22:38:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 590 ms / 2,000 ms
コード長 1,208 bytes
コンパイル時間 2,577 ms
コンパイル使用メモリ 78,788 KB
実行使用メモリ 62,608 KB
最終ジャッジ日時 2024-09-14 22:16:02
合計ジャッジ時間 12,269 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
49,892 KB
testcase_01 AC 552 ms
62,608 KB
testcase_02 AC 94 ms
51,268 KB
testcase_03 AC 360 ms
58,300 KB
testcase_04 AC 450 ms
60,180 KB
testcase_05 AC 197 ms
54,972 KB
testcase_06 AC 487 ms
60,376 KB
testcase_07 AC 319 ms
57,724 KB
testcase_08 AC 504 ms
60,800 KB
testcase_09 AC 255 ms
56,100 KB
testcase_10 AC 336 ms
57,996 KB
testcase_11 AC 368 ms
58,040 KB
testcase_12 AC 587 ms
62,532 KB
testcase_13 AC 266 ms
55,892 KB
testcase_14 AC 590 ms
62,480 KB
testcase_15 AC 281 ms
57,536 KB
testcase_16 AC 376 ms
58,244 KB
testcase_17 AC 165 ms
53,296 KB
testcase_18 AC 491 ms
60,232 KB
testcase_19 AC 271 ms
56,528 KB
testcase_20 AC 233 ms
56,280 KB
testcase_21 AC 56 ms
50,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.ArrayList;
import java.util.Collections;

enum type {in, out};

class Point implements Comparable<Point>{
    int x;
    type t;
    Point(int x, type t){
        this.x = x;
        this.t = t;
    }
    @Override
    public int compareTo(Point p){
        if(this.x != p.x){
            return x-p.x;
        }else{
            return this.t == type.out ? -1 : 1;
        }
    }
}
public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        ArrayList<Point> a = new ArrayList<Point>(2*n);
        for(int i = 0; i < n; i++){
            String[] line = br.readLine().split(" ");
            int x = Integer.parseInt(line[0]);
            int r = Integer.parseInt(line[1]);
            a.add(new Point(x-r, type.in));
            a.add(new Point(x+r, type.out));
        }
        Collections.sort(a);
        int ret = 0, now = 0;
        for(int i = 0; i < 2*n; i++){
            now += a.get(i).t==type.in ? 1 : -1;
            ret = Math.max(ret, now);
        }
        System.out.println(ret);
    }
}
0