結果

問題 No.318 学学学学学
ユーザー 37zigen37zigen
提出日時 2020-03-27 04:50:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,624 ms / 2,000 ms
コード長 3,780 bytes
コンパイル時間 3,196 ms
コンパイル使用メモリ 86,220 KB
実行使用メモリ 69,412 KB
最終ジャッジ日時 2024-06-10 15:57:49
合計ジャッジ時間 34,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 443 ms
48,776 KB
testcase_01 AC 608 ms
49,188 KB
testcase_02 AC 632 ms
49,608 KB
testcase_03 AC 551 ms
49,548 KB
testcase_04 AC 611 ms
49,368 KB
testcase_05 AC 1,495 ms
62,012 KB
testcase_06 AC 1,566 ms
61,240 KB
testcase_07 AC 1,547 ms
60,920 KB
testcase_08 AC 1,507 ms
61,132 KB
testcase_09 AC 1,513 ms
60,952 KB
testcase_10 AC 1,444 ms
60,940 KB
testcase_11 AC 1,624 ms
60,900 KB
testcase_12 AC 1,461 ms
69,412 KB
testcase_13 AC 1,490 ms
60,260 KB
testcase_14 AC 1,417 ms
60,780 KB
testcase_15 AC 1,478 ms
61,028 KB
testcase_16 AC 1,523 ms
61,052 KB
testcase_17 AC 1,275 ms
60,020 KB
testcase_18 AC 1,355 ms
60,688 KB
testcase_19 AC 1,387 ms
60,780 KB
testcase_20 AC 1,388 ms
61,316 KB
testcase_21 AC 149 ms
54,928 KB
testcase_22 AC 153 ms
54,596 KB
testcase_23 AC 160 ms
54,768 KB
testcase_24 AC 160 ms
54,876 KB
testcase_25 AC 151 ms
54,628 KB
testcase_26 AC 148 ms
42,332 KB
testcase_27 AC 154 ms
42,344 KB
testcase_28 AC 151 ms
42,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.math.BigInteger;
import java.util.Arrays;
import java.util.NoSuchElementException;
import java.util.Scanner;

public class Main {

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
	class SegTree{
		int n=1;
		int[] v;
		int nil=-1;
		
		public SegTree(int n_) {
			while(n<n_)n*=2;
			v=new int[2*n-1];
			Arrays.fill(v, nil);
		}
		
		void push(int k) {
			if(2*k+2<v.length&&v[k]!=nil) {
				v[2*k+1]=v[k];
				v[2*k+2]=v[k];
			}
		}
		
		int query(int a,int b,int val) {
			return query(0,n,a,b,0,val);
		}
		
		int query(int a,int b) {
			return query(0,n,a,b,0,nil);
		}
		
		int query(int l,int r,int a,int b,int k,int val) {
			push(k);
			if(r<=a||b<=l)return nil;
			else if(a<=l&&r<=b&&(val!=nil||r-l==1)) {
				if(val!=nil) {
					v[k]=val;
					push(k);
				}
				return v[k];
			}else {
				int vl=query(l,(l+r)/2,a,b,2*k+1,val);
				int vr=query((l+r)/2,r,a,b,2*k+2,val);
				v[k]=nil;
				return Math.max(vl, vr);
			}
		}
	}
	
	void run() {
		Scanner sc = new Scanner(System.in);
		int n=sc.nextInt();
		long[] a=new long[n];
		for(int i=0;i<n;++i) {
			a[i]=sc.nextLong()<<32|i;
		}
		Arrays.sort(a);
		SegTree seg=new SegTree(n);
		for(int i=0;i<n;) {
			int j=i;
			int left=n,right=-1;
			while(j<n&&a[i]>>32==a[j]>>32) {
				left=Math.min(left, (int)a[j]);
				right=Math.max(right, (int)a[j]);
				++j;
			}
			seg.query(left, right+1,(int)(a[i]>>32));
			i=j;
		}
		for(int i=0;i<n;++i) {
			System.out.print(seg.query(i, i+1)+(i==n-1?"\n":" "));
		}
	}
	
	public static void main(String[] args) throws FileNotFoundException {
		long t = System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis() - t);
	}
}
	
	
class FastScanner {
    private final InputStream in = System.in;
    private final byte[] buffer = new byte[1024];
    private int ptr = 0;
    private int buflen = 0;
    private boolean hasNextByte() {
        if (ptr < buflen) {
            return true;
        }else{
            ptr = 0;
            try {
                buflen = in.read(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            if (buflen <= 0) {
                return false;
            }
        }
        return true;
    }
    private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
    private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
    private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}
    public boolean hasNext() { skipUnprintable(); return hasNextByte();}
    public String next() {
        if (!hasNext()) throw new NoSuchElementException();
        StringBuilder sb = new StringBuilder();
        int b = readByte();
        while(isPrintableChar(b)) {
            sb.appendCodePoint(b);
            b = readByte();
        }
        return sb.toString();
    }
    public long nextLong() {
        if (!hasNext()) throw new NoSuchElementException();
        long n = 0;
        boolean minus = false;
        int b = readByte();
        if (b == '-') {
            minus = true;
            b = readByte();
        }
        if (b < '0' || '9' < b) {
            throw new NumberFormatException();
        }
        while(true){
            if ('0' <= b && b <= '9') {
                n *= 10;
                n += b - '0';
            }else if(b == -1 || !isPrintableChar(b)){
                return minus ? -n : n;
            }else{
                throw new NumberFormatException();
            }
            b = readByte();
        }
    }
    
    public int nextInt() {
    	return (int)nextLong();
    }
}
0