結果

問題 No.318 学学学学学
ユーザー htensaihtensai
提出日時 2020-06-11 21:33:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 799 ms / 2,000 ms
コード長 2,980 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 80,040 KB
実行使用メモリ 72,032 KB
最終ジャッジ日時 2024-06-24 03:21:36
合計ジャッジ時間 16,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
42,364 KB
testcase_01 AC 293 ms
47,184 KB
testcase_02 AC 316 ms
45,748 KB
testcase_03 AC 237 ms
45,740 KB
testcase_04 AC 299 ms
47,100 KB
testcase_05 AC 771 ms
71,840 KB
testcase_06 AC 649 ms
63,084 KB
testcase_07 AC 591 ms
62,088 KB
testcase_08 AC 546 ms
60,448 KB
testcase_09 AC 483 ms
58,044 KB
testcase_10 AC 423 ms
56,868 KB
testcase_11 AC 799 ms
72,032 KB
testcase_12 AC 550 ms
63,216 KB
testcase_13 AC 554 ms
60,508 KB
testcase_14 AC 541 ms
59,696 KB
testcase_15 AC 469 ms
57,256 KB
testcase_16 AC 392 ms
56,880 KB
testcase_17 AC 536 ms
62,912 KB
testcase_18 AC 507 ms
62,732 KB
testcase_19 AC 506 ms
63,028 KB
testcase_20 AC 316 ms
53,712 KB
testcase_21 AC 52 ms
37,156 KB
testcase_22 AC 53 ms
36,756 KB
testcase_23 AC 52 ms
36,772 KB
testcase_24 AC 62 ms
36,864 KB
testcase_25 AC 64 ms
36,744 KB
testcase_26 AC 64 ms
37,176 KB
testcase_27 AC 63 ms
36,836 KB
testcase_28 AC 63 ms
36,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main (String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		SegmentTree st = new SegmentTree(n + 1);
		TreeMap<Integer, ArrayList<Integer>> map = new TreeMap<>();
		String[] second = br.readLine().split(" ", n);
		for (int i = 0; i < n; i++) {
		    int x = Integer.parseInt(second[i]);
		    if (!map.containsKey(x)) {
		        map.put(x, new ArrayList<>());
		    }
		    map.get(x).add(i);
		    st.set(i, x);
		}
		for (int x : map.keySet()) {
		    ArrayList<Integer> list = map.get(x);
		    int left = list.get(0);
		    int right = list.get(list.size() - 1);
	        st.update(left, right, x);
		}
		st.updateAll();
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
		    if (i > 0) {
		        sb.append(" ");
		    }
		    sb.append(st.getCurrent(i));
		}
		System.out.println(sb);
	}
}

class SegmentTree {
    int size;
    int base;
    int[] tree;
    
    public SegmentTree(int size) {
        this.size = size;
        base = 1;
        while (base < size) {
            base <<= 1;
        }
        tree = new int[base * 2 - 1];
    }
    
    public void set(int idx, int value) {
        tree[idx + base - 1] = value;
    }
    
    public int getCurrent(int idx) {
        return tree[idx + base - 1];
    }
    
    public int get(int idx) {
        return getTree(idx + base - 1);
    }
    
    private int getTree(int idx) {
        if (idx == 0) {
            return tree[idx];
        }
        int ans;
        if (idx % 2 == 1) {
            ans = getTree((idx - 1) / 2);
        } else {
            ans = getTree((idx - 1) / 2);
        }
        if (ans == 0) {
            return tree[idx];
        } else {
            return ans;
        }
    }
    
    public void updateAll() {
        updateAll(0, 0);
    }
    
    private void updateAll(int idx, int value) {
        if (value > 0) {
            tree[idx] = value;
        }
        if (idx >= base - 1) {
            return;
        }
        updateAll(2 * idx + 1, tree[idx]);
        updateAll(2 * idx + 2, tree[idx]);
    }
    
    public void update(int min, int max, int value) {
        update(min, max, value, 0, 0, base);
    }
    
    private void update(int min, int max, int value, int idx, int left, int right) {
        if (min >= right || max < left) {
            return;
        }
        if (min <= left && right - 1 <= max) {
            tree[idx] = value;
            return;
        }
        update(min, max, value, 2 * idx + 1, left, (left + right) / 2);
        update(min, max, value, 2 * idx + 2, (left + right) / 2, right);
        if (tree[idx] > 0) {
            int tmp = tree[idx];
            tree[idx] = 0;
            update(left, min - 1, tmp, idx, left, right);
            update(max + 1, right - 1, tmp, idx, left, right);
        }
    }
 }
0