結果

問題 No.318 学学学学学
ユーザー tentententen
提出日時 2021-01-21 08:50:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,648 ms / 2,000 ms
コード長 1,291 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 79,440 KB
実行使用メモリ 99,876 KB
最終ジャッジ日時 2024-06-06 14:13:04
合計ジャッジ時間 27,199 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 377 ms
60,208 KB
testcase_01 AC 562 ms
62,132 KB
testcase_02 AC 600 ms
63,872 KB
testcase_03 AC 480 ms
62,336 KB
testcase_04 AC 551 ms
61,772 KB
testcase_05 AC 1,537 ms
97,412 KB
testcase_06 AC 1,314 ms
87,004 KB
testcase_07 AC 1,245 ms
84,908 KB
testcase_08 AC 1,193 ms
80,440 KB
testcase_09 AC 1,128 ms
76,104 KB
testcase_10 AC 998 ms
76,280 KB
testcase_11 AC 1,648 ms
99,876 KB
testcase_12 AC 1,359 ms
85,892 KB
testcase_13 AC 1,228 ms
83,500 KB
testcase_14 AC 1,155 ms
80,640 KB
testcase_15 AC 1,043 ms
75,908 KB
testcase_16 AC 1,017 ms
72,956 KB
testcase_17 AC 1,049 ms
86,064 KB
testcase_18 AC 984 ms
85,764 KB
testcase_19 AC 951 ms
81,256 KB
testcase_20 AC 885 ms
72,228 KB
testcase_21 AC 129 ms
54,504 KB
testcase_22 AC 130 ms
54,092 KB
testcase_23 AC 132 ms
54,352 KB
testcase_24 AC 133 ms
53,888 KB
testcase_25 AC 133 ms
53,992 KB
testcase_26 AC 129 ms
54,208 KB
testcase_27 AC 131 ms
54,080 KB
testcase_28 AC 129 ms
54,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		TreeMap<Integer, ArrayList<Integer>> positions = new TreeMap<>();
		TreeSet<Integer> idxes = new TreeSet<>();
		for (int i = 0; i < n; i++) {
		    int x = -sc.nextInt();
		    if (!positions.containsKey(x)) {
		        positions.put(x, new ArrayList<>());
		    }
		    positions.get(x).add(i);
		    idxes.add(i);
		}
		int[] ans = new int[n];
		for (int x : positions.keySet()) {
		    if (positions.get(x).size() == 0) {
		        int y = positions.get(x).get(0);
		        if (idxes.contains(y)) {
		            ans[y] = -x;
		            idxes.remove(y);
		        }
		    } else {
		        int left = positions.get(x).get(0);
		        int right = positions.get(x).get(positions.get(x).size() - 1);
		        Integer key = left - 1;
		        while ((key = idxes.higher(key)) != null) {
		            if (key > right) {
		                break;
		            }
		            ans[key] = -x;
		            idxes.remove(key);
		        }
		    }
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
		    if (i > 0) {
		        sb.append(" ");
		    }
		    sb.append(ans[i]);
		}
		System.out.println(sb);
	}
}
0