結果

問題 No.318 学学学学学
ユーザー threepipes_sthreepipes_s
提出日時 2015-12-11 18:49:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,193 bytes
コンパイル時間 2,766 ms
コンパイル使用メモリ 81,072 KB
実行使用メモリ 78,576 KB
最終ジャッジ日時 2023-10-13 11:15:18
合計ジャッジ時間 15,780 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
56,240 KB
testcase_01 AC 241 ms
60,388 KB
testcase_02 WA -
testcase_03 AC 216 ms
55,096 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 695 ms
76,580 KB
testcase_07 AC 639 ms
72,796 KB
testcase_08 AC 577 ms
67,304 KB
testcase_09 AC 505 ms
66,928 KB
testcase_10 AC 427 ms
66,888 KB
testcase_11 WA -
testcase_12 AC 611 ms
75,916 KB
testcase_13 AC 532 ms
72,452 KB
testcase_14 AC 489 ms
66,988 KB
testcase_15 AC 459 ms
67,032 KB
testcase_16 AC 413 ms
66,068 KB
testcase_17 AC 522 ms
75,836 KB
testcase_18 AC 503 ms
75,992 KB
testcase_19 AC 528 ms
75,904 KB
testcase_20 AC 370 ms
63,868 KB
testcase_21 AC 76 ms
51,248 KB
testcase_22 AC 76 ms
50,784 KB
testcase_23 AC 77 ms
51,188 KB
testcase_24 AC 75 ms
51,060 KB
testcase_25 AC 77 ms
51,432 KB
testcase_26 AC 76 ms
51,852 KB
testcase_27 AC 76 ms
51,060 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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.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] = -1;
			}else if(first.get(a[i])==i){
				a[i] = -1;
			}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]!=-1){
				if(set.contains(a[i])){
					final int t = set.first();
					set.remove(a[i]);
					a[i] = t;
					continue;
				}
				else set.add(a[i]);
			}
			if(!set.isEmpty()) a[i] = set.first();
		}
		StringBuilder sb = new StringBuilder();
		for(int i=0; i<n; i++){
			if(a[i]==-1) 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