結果

問題 No.318 学学学学学
ユーザー threepipes_sthreepipes_s
提出日時 2015-12-11 18:49:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,193 bytes
コンパイル時間 2,627 ms
コンパイル使用メモリ 92,172 KB
実行使用メモリ 74,920 KB
最終ジャッジ日時 2024-09-15 08:15:22
合計ジャッジ時間 15,336 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
54,908 KB
testcase_01 AC 259 ms
59,680 KB
testcase_02 WA -
testcase_03 AC 226 ms
55,552 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 707 ms
65,748 KB
testcase_07 AC 618 ms
61,432 KB
testcase_08 AC 568 ms
56,212 KB
testcase_09 AC 519 ms
55,764 KB
testcase_10 AC 437 ms
55,900 KB
testcase_11 WA -
testcase_12 AC 592 ms
63,480 KB
testcase_13 AC 538 ms
61,376 KB
testcase_14 AC 490 ms
56,052 KB
testcase_15 AC 465 ms
56,088 KB
testcase_16 AC 434 ms
55,124 KB
testcase_17 AC 559 ms
63,812 KB
testcase_18 AC 532 ms
64,476 KB
testcase_19 AC 566 ms
64,696 KB
testcase_20 AC 400 ms
54,072 KB
testcase_21 AC 81 ms
38,036 KB
testcase_22 AC 80 ms
38,256 KB
testcase_23 AC 81 ms
38,040 KB
testcase_24 AC 79 ms
38,240 KB
testcase_25 AC 81 ms
38,260 KB
testcase_26 AC 82 ms
38,032 KB
testcase_27 AC 79 ms
37,932 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