結果

問題 No.318 学学学学学
ユーザー threepipes_sthreepipes_s
提出日時 2015-12-11 18:58:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 686 ms / 2,000 ms
コード長 3,309 bytes
コンパイル時間 6,161 ms
コンパイル使用メモリ 86,588 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2023-09-04 17:34:05
合計ジャッジ時間 17,585 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
55,744 KB
testcase_01 AC 240 ms
60,700 KB
testcase_02 AC 255 ms
60,432 KB
testcase_03 AC 197 ms
56,432 KB
testcase_04 AC 238 ms
60,720 KB
testcase_05 AC 528 ms
77,748 KB
testcase_06 AC 686 ms
76,336 KB
testcase_07 AC 611 ms
73,476 KB
testcase_08 AC 535 ms
67,468 KB
testcase_09 AC 484 ms
67,084 KB
testcase_10 AC 430 ms
67,024 KB
testcase_11 AC 505 ms
78,592 KB
testcase_12 AC 570 ms
75,964 KB
testcase_13 AC 516 ms
73,172 KB
testcase_14 AC 478 ms
67,516 KB
testcase_15 AC 447 ms
67,408 KB
testcase_16 AC 410 ms
67,180 KB
testcase_17 AC 537 ms
76,676 KB
testcase_18 AC 511 ms
75,324 KB
testcase_19 AC 530 ms
76,020 KB
testcase_20 AC 384 ms
64,428 KB
testcase_21 AC 69 ms
51,280 KB
testcase_22 AC 76 ms
51,020 KB
testcase_23 AC 74 ms
51,924 KB
testcase_24 AC 69 ms
51,192 KB
testcase_25 AC 70 ms
51,468 KB
testcase_26 AC 70 ms
51,920 KB
testcase_27 AC 69 ms
51,048 KB
testcase_28 AC 70 ms
49,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.BitSet;
import java.util.HashMap;
import java.util.TreeSet;
 
public class Main{
	public static void main(String[] args){
		try {(new Solve()).solve();}
		catch (NumberFormatException | IOException e) {e.printStackTrace();}
	}
}
 
class Solve{
	void solve() throws NumberFormatException, IOException{
		final ContestScanner in = new ContestScanner();
		ContestWriter out = new ContestWriter();
		int n = in.nextInt();
		int[] a = new int[n];
		int[] b = new int[n];
		HashMap<Integer, Integer> first = new HashMap<>();
		for(int i=0; i<n; i++){
			a[i] = in.nextInt();
			b[i] = a[i];
			if(first.containsKey(a[i])) continue;
			first.put(a[i], i);
		}
		HashMap<Integer, Integer> second = new HashMap<>();
		for(int i=n-1; i>=0; i--){
			if(second.containsKey(a[i])){
				if(first.get(a[i])!=i)
					a[i] = 0;
			}else if(first.get(a[i])==i){
				a[i] = -a[i];
			}else{
				second.put(a[i], i);
			}
		}
		TreeSet<Integer> set = new TreeSet<>((e1,e2)->e2-e1);
		for(int i=0; i<n; i++){
			if(a[i]>0){
				if(set.contains(a[i])){
					final int t = set.first();
					set.remove(a[i]);
					a[i] = t;
					continue;
				}
				else set.add(a[i]);
			}else if(a[i]<0){
				a[i] = Math.max(-a[i], set.isEmpty()?0:set.first());
				continue;
			}
			if(!set.isEmpty()) a[i] = set.first();
		}
		StringBuilder sb = new StringBuilder();
		for(int i=0; i<n; i++){
			if(a[i]==0) a[i] = b[i];
			sb.append(a[i]+" ");
		}
		out.println(sb.toString().trim());
		out.close();
    }
}

class MultiSet<T> extends HashMap<T, Integer>{
	@Override
	public Integer get(Object key){return containsKey(key)?super.get(key):0;}
	public void add(T key,int v){put(key,get(key)+v);}
	public void add(T key){put(key,get(key)+1);}
}
 
class ContestWriter{
	private PrintWriter out;
	public ContestWriter(String filename) throws IOException
	{out = new PrintWriter(new BufferedWriter(new FileWriter(filename)));}
	public ContestWriter() throws IOException{out = new PrintWriter(System.out);}
	public void println(String str){out.println(str);}
	public void println(Object str){out.println(str);}
	public void print(String str){out.print(str);}
	public void close(){out.close();}
}
 
class ContestScanner {
	private BufferedReader reader;
	private String[] line;
	private int idx;
	public ContestScanner()throws FileNotFoundException 
	{reader=new BufferedReader(new InputStreamReader(System.in));}
	public ContestScanner(String filename)throws FileNotFoundException
	{reader=new BufferedReader(new InputStreamReader(new FileInputStream(filename)));}
	public String nextToken()throws IOException{if(line==null||line.length<=idx){
	line=reader.readLine().trim().split(" ");idx=0;}return line[idx++];}
	public String readLine()throws IOException{return reader.readLine();}
	public long nextLong()throws IOException,NumberFormatException{return Long.parseLong(nextToken());}
	public int nextInt()throws NumberFormatException,IOException{return(int)nextLong();}
	public double nextDouble()throws NumberFormatException,IOException 
	{return Double.parseDouble(nextToken());}
}
0