結果

問題 No.318 学学学学学
ユーザー tentententen
提出日時 2023-06-13 16:29:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,067 ms / 2,000 ms
コード長 2,357 bytes
コンパイル時間 2,960 ms
コンパイル使用メモリ 87,400 KB
実行使用メモリ 94,328 KB
最終ジャッジ日時 2024-06-22 01:46:47
合計ジャッジ時間 19,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 250 ms
57,464 KB
testcase_01 AC 360 ms
59,224 KB
testcase_02 AC 420 ms
62,504 KB
testcase_03 AC 301 ms
59,040 KB
testcase_04 AC 355 ms
60,212 KB
testcase_05 AC 1,067 ms
93,900 KB
testcase_06 AC 840 ms
82,216 KB
testcase_07 AC 802 ms
80,900 KB
testcase_08 AC 711 ms
76,456 KB
testcase_09 AC 688 ms
74,256 KB
testcase_10 AC 623 ms
74,224 KB
testcase_11 AC 1,045 ms
94,328 KB
testcase_12 AC 864 ms
81,376 KB
testcase_13 AC 820 ms
82,736 KB
testcase_14 AC 684 ms
75,404 KB
testcase_15 AC 650 ms
75,376 KB
testcase_16 AC 580 ms
75,780 KB
testcase_17 AC 628 ms
81,928 KB
testcase_18 AC 621 ms
78,656 KB
testcase_19 AC 620 ms
80,644 KB
testcase_20 AC 545 ms
70,568 KB
testcase_21 AC 64 ms
51,056 KB
testcase_22 AC 65 ms
51,116 KB
testcase_23 AC 66 ms
51,116 KB
testcase_24 AC 65 ms
51,132 KB
testcase_25 AC 64 ms
50,712 KB
testcase_26 AC 62 ms
50,924 KB
testcase_27 AC 63 ms
50,988 KB
testcase_28 AC 65 ms
51,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        TreeSet<Integer> unused = new TreeSet<>();
        TreeMap<Integer, TreeSet<Integer>> places = new TreeMap<>();
        for (int i = 0; i < n; i++) {
            unused.add(i);
            int x = sc.nextInt();
            if (!places.containsKey(-x)) {
                places.put(-x, new TreeSet<>());
            }
            places.get(-x).add(i);
        }
        int[] ans = new int[n];
        for (int x : places.keySet()) {
            int first = places.get(x).first();
            int last = places.get(x).last();
            Integer key = first - 1;
            while ((key = unused.higher(key)) != null) {
                if (key > last) {
                    break;
                }
                unused.remove(key);
                ans[key] = -x;
            }
        }
        System.out.println(String.join(" ", Arrays.stream(ans).mapToObj(String::valueOf).toArray(String[]::new)));
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0