結果

問題 No.2803 Bocching Star
ユーザー tentententen
提出日時 2024-07-17 09:32:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,188 ms / 2,000 ms
コード長 2,433 bytes
コンパイル時間 3,314 ms
コンパイル使用メモリ 91,908 KB
実行使用メモリ 86,788 KB
最終ジャッジ日時 2024-07-17 09:32:50
合計ジャッジ時間 29,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
51,552 KB
testcase_01 AC 82 ms
51,596 KB
testcase_02 AC 83 ms
51,532 KB
testcase_03 AC 346 ms
57,600 KB
testcase_04 AC 815 ms
75,504 KB
testcase_05 AC 495 ms
61,736 KB
testcase_06 AC 269 ms
56,052 KB
testcase_07 AC 496 ms
62,248 KB
testcase_08 AC 358 ms
57,284 KB
testcase_09 AC 667 ms
71,128 KB
testcase_10 AC 871 ms
71,592 KB
testcase_11 AC 995 ms
74,072 KB
testcase_12 AC 486 ms
62,276 KB
testcase_13 AC 689 ms
68,144 KB
testcase_14 AC 556 ms
63,964 KB
testcase_15 AC 1,025 ms
78,304 KB
testcase_16 AC 717 ms
66,404 KB
testcase_17 AC 356 ms
57,216 KB
testcase_18 AC 294 ms
57,296 KB
testcase_19 AC 780 ms
69,460 KB
testcase_20 AC 593 ms
64,432 KB
testcase_21 AC 493 ms
61,600 KB
testcase_22 AC 536 ms
62,456 KB
testcase_23 AC 944 ms
74,232 KB
testcase_24 AC 1,188 ms
84,096 KB
testcase_25 AC 1,135 ms
86,788 KB
testcase_26 AC 1,088 ms
86,084 KB
testcase_27 AC 977 ms
73,984 KB
testcase_28 AC 1,066 ms
75,116 KB
testcase_29 AC 1,011 ms
74,872 KB
testcase_30 AC 1,144 ms
86,224 KB
testcase_31 AC 893 ms
74,552 KB
testcase_32 AC 1,118 ms
84,032 KB
testcase_33 AC 131 ms
52,768 KB
testcase_34 AC 133 ms
52,836 KB
testcase_35 AC 127 ms
52,624 KB
testcase_36 AC 134 ms
52,676 KB
testcase_37 AC 138 ms
52,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int s = sc.nextInt();
        TreeSet<Star> stars = new TreeSet<>();
        for (int i = 1; i <= n; i++) {
            stars.add(new Star(i, sc.nextInt()));
        }
        stars.add(new Star(0, Integer.MIN_VALUE / 2));
        stars.add(new Star(0, Integer.MAX_VALUE));
        List<Star> ans = stars.stream()
            .filter(x -> x.idx != 0 && x.value - stars.lower(x).value > s && stars.higher(x).value - x.value > s)
            .sorted((a, b) -> a.idx - b.idx)
            .toList();
        System.out.println(ans.size());
        System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining(" ")));
    }
    
    static class Star implements Comparable<Star> {
        int idx;
        int value;
        
        public Star(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int hashCode() {
            return idx;
        }
        
        public boolean equals(Object o) {
            Star s = (Star)o;
            return idx == s.idx && value == s.value;
        }
        
        public int compareTo(Star another) {
            return value == another.value ? idx - another.idx : value - another.value;
        }
        
        public String toString() {
            return String.valueOf(idx);
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0