結果

問題 No.318 学学学学学
ユーザー kuuso1kuuso1
提出日時 2015-12-11 23:44:24
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 474 ms / 2,000 ms
コード長 1,639 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 113,504 KB
実行使用メモリ 52,592 KB
最終ジャッジ日時 2024-06-22 15:45:02
合計ジャッジ時間 10,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
28,324 KB
testcase_01 AC 90 ms
31,812 KB
testcase_02 AC 107 ms
37,356 KB
testcase_03 AC 85 ms
35,168 KB
testcase_04 AC 107 ms
32,972 KB
testcase_05 AC 406 ms
52,108 KB
testcase_06 AC 460 ms
50,876 KB
testcase_07 AC 411 ms
45,268 KB
testcase_08 AC 380 ms
44,116 KB
testcase_09 AC 351 ms
42,072 KB
testcase_10 AC 315 ms
40,544 KB
testcase_11 AC 400 ms
52,592 KB
testcase_12 AC 355 ms
50,640 KB
testcase_13 AC 331 ms
47,196 KB
testcase_14 AC 331 ms
44,324 KB
testcase_15 AC 320 ms
42,128 KB
testcase_16 AC 305 ms
42,620 KB
testcase_17 AC 451 ms
48,588 KB
testcase_18 AC 337 ms
49,288 KB
testcase_19 AC 474 ms
48,464 KB
testcase_20 AC 300 ms
39,200 KB
testcase_21 AC 26 ms
22,836 KB
testcase_22 AC 28 ms
25,136 KB
testcase_23 AC 28 ms
26,952 KB
testcase_24 AC 29 ms
27,152 KB
testcase_25 AC 28 ms
25,168 KB
testcase_26 AC 27 ms
25,044 KB
testcase_27 AC 27 ms
25,048 KB
testcase_28 AC 27 ms
22,712 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		int WD=300;
		int[] B=new int[N];
		int[] BP=new int[N/300+1];
		
		Dictionary<int,List<int>> D=new Dictionary<int,List<int>>();
		for(int i=0;i<N;i++){
			if(!D.ContainsKey(A[i]))D.Add(A[i],new List<int>());
			D[A[i]].Add(i);
		}
		var Keys=new List<int>(D.Keys);
		Keys.Sort();
		
		for(int t=0;t<Keys.Count;t++){
			int k=Keys[t];
			List<int> L=new List<int>();
			foreach(var j in D[k]){
				//if(B[j]==0 && BP[j/WD]==0){
					L.Add(j);
				//}
			}
			if(L.Count==0)continue;
			int left=L.Min();
			int right=L.Max();
			
			for(int i=left;i<=right;i++){
				if(i%WD==0 && i+WD<=right){
					BP[i/WD]=k;
					i+=WD-1;
					continue;
				}
				B[i]=k;
			}
		}
		for(int i=0;i<N;i++){
			Console.Write(i==0?"{0}":" {0}",Math.Max(B[i],BP[i/WD]));
		}
		
		
		
		
	}
	int N;
	int[] A;
	public Sol(){
		N=ri();
		A=ria();
	}




	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(){return Console.ReadLine().Split(' ');}
	static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));}
	static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));}
	static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));}
}
0