結果

問題 No.318 学学学学学
ユーザー kuuso1kuuso1
提出日時 2015-12-12 21:57:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 1,794 bytes
コンパイル時間 4,260 ms
コンパイル使用メモリ 117,256 KB
実行使用メモリ 55,164 KB
最終ジャッジ日時 2024-06-22 15:57:53
合計ジャッジ時間 9,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
30,768 KB
testcase_01 AC 59 ms
34,616 KB
testcase_02 AC 62 ms
36,600 KB
testcase_03 AC 53 ms
35,944 KB
testcase_04 AC 60 ms
35,932 KB
testcase_05 AC 190 ms
54,300 KB
testcase_06 AC 276 ms
48,968 KB
testcase_07 AC 233 ms
46,184 KB
testcase_08 AC 201 ms
47,836 KB
testcase_09 AC 159 ms
46,460 KB
testcase_10 AC 114 ms
42,884 KB
testcase_11 AC 193 ms
55,164 KB
testcase_12 AC 153 ms
50,644 KB
testcase_13 AC 137 ms
46,312 KB
testcase_14 AC 130 ms
47,800 KB
testcase_15 AC 120 ms
46,492 KB
testcase_16 AC 114 ms
44,824 KB
testcase_17 AC 271 ms
48,720 KB
testcase_18 AC 136 ms
49,456 KB
testcase_19 AC 284 ms
48,856 KB
testcase_20 AC 99 ms
37,688 KB
testcase_21 AC 28 ms
25,248 KB
testcase_22 AC 29 ms
24,996 KB
testcase_23 AC 28 ms
25,368 KB
testcase_24 AC 29 ms
27,416 KB
testcase_25 AC 29 ms
25,116 KB
testcase_26 AC 29 ms
25,296 KB
testcase_27 AC 28 ms
25,252 KB
testcase_28 AC 28 ms
25,264 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]));
		}*/
		var sb=new StringBuilder();
		for(int i=0;i<N;i++)sb.Append(String.Format(i==0?"{0}":" {0}",Math.Max(B[i],BP[i/WD])));
		Console.WriteLine(sb.ToString());
		
		
	}
	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