結果

問題 No.318 学学学学学
ユーザー tentententen
提出日時 2021-11-11 13:09:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 986 ms / 2,000 ms
コード長 2,032 bytes
コンパイル時間 2,887 ms
コンパイル使用メモリ 80,216 KB
実行使用メモリ 71,340 KB
最終ジャッジ日時 2024-11-22 17:54:47
合計ジャッジ時間 18,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
43,416 KB
testcase_01 AC 355 ms
47,028 KB
testcase_02 AC 369 ms
50,196 KB
testcase_03 AC 285 ms
46,268 KB
testcase_04 AC 359 ms
46,496 KB
testcase_05 AC 980 ms
71,320 KB
testcase_06 AC 751 ms
64,032 KB
testcase_07 AC 719 ms
61,600 KB
testcase_08 AC 650 ms
58,756 KB
testcase_09 AC 609 ms
55,424 KB
testcase_10 AC 532 ms
55,012 KB
testcase_11 AC 986 ms
71,340 KB
testcase_12 AC 776 ms
63,736 KB
testcase_13 AC 725 ms
61,328 KB
testcase_14 AC 665 ms
59,440 KB
testcase_15 AC 639 ms
55,900 KB
testcase_16 AC 497 ms
55,040 KB
testcase_17 AC 589 ms
62,268 KB
testcase_18 AC 540 ms
63,072 KB
testcase_19 AC 604 ms
64,064 KB
testcase_20 AC 449 ms
53,992 KB
testcase_21 AC 60 ms
36,808 KB
testcase_22 AC 59 ms
36,948 KB
testcase_23 AC 59 ms
36,668 KB
testcase_24 AC 59 ms
36,936 KB
testcase_25 AC 58 ms
37,032 KB
testcase_26 AC 58 ms
37,068 KB
testcase_27 AC 58 ms
36,672 KB
testcase_28 AC 58 ms
37,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        TreeMap<Integer, ArrayList<Integer>> pattern = new TreeMap<>();
        int[] values = new int[n];
        TreeSet<Integer> remain = new TreeSet<>();
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
            if (!pattern.containsKey(-values[i])) {
                pattern.put(-values[i], new ArrayList<>());
            }
            pattern.get(-values[i]).add(i);
            remain.add(i);
        }
        for (int x : pattern.keySet()) {
            ArrayList<Integer> list = pattern.get(x);
            Integer key = list.get(0) - 1;
            while ((key = remain.higher(key)) != null) {
                if (key > list.get(list.size() - 1)) {
                    break;
                }
                values[key] = -x;
                remain.remove(key);
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (i > 0) {
                sb.append(" ");
            }
            sb.append(values[i]);
        }
        System.out.println(sb);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0