結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー kuuso1kuuso1
提出日時 2016-05-22 03:50:26
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 437 ms / 1,000 ms
コード長 1,099 bytes
コンパイル時間 1,115 ms
コンパイル使用メモリ 106,240 KB
実行使用メモリ 44,032 KB
最終ジャッジ日時 2024-10-07 06:26:50
合計ジャッジ時間 19,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,920 KB
testcase_01 AC 27 ms
18,048 KB
testcase_02 AC 26 ms
17,920 KB
testcase_03 AC 358 ms
44,032 KB
testcase_04 AC 375 ms
38,912 KB
testcase_05 AC 365 ms
38,784 KB
testcase_06 AC 377 ms
38,784 KB
testcase_07 AC 378 ms
38,400 KB
testcase_08 AC 399 ms
38,400 KB
testcase_09 AC 366 ms
38,656 KB
testcase_10 AC 390 ms
38,656 KB
testcase_11 AC 395 ms
43,520 KB
testcase_12 AC 423 ms
43,520 KB
testcase_13 AC 370 ms
43,904 KB
testcase_14 AC 374 ms
43,776 KB
testcase_15 AC 367 ms
43,648 KB
testcase_16 AC 385 ms
43,392 KB
testcase_17 AC 390 ms
43,008 KB
testcase_18 AC 383 ms
42,752 KB
testcase_19 AC 384 ms
43,008 KB
testcase_20 AC 437 ms
42,112 KB
testcase_21 AC 376 ms
42,240 KB
testcase_22 AC 378 ms
42,240 KB
testcase_23 AC 359 ms
42,112 KB
testcase_24 AC 368 ms
42,880 KB
testcase_25 AC 426 ms
42,624 KB
testcase_26 AC 374 ms
42,368 KB
testcase_27 AC 372 ms
42,368 KB
testcase_28 AC 373 ms
42,368 KB
testcase_29 AC 369 ms
42,240 KB
testcase_30 AC 379 ms
42,368 KB
testcase_31 AC 396 ms
42,112 KB
testcase_32 AC 392 ms
41,984 KB
testcase_33 AC 373 ms
42,112 KB
testcase_34 AC 405 ms
41,600 KB
testcase_35 AC 359 ms
41,600 KB
testcase_36 AC 398 ms
41,472 KB
testcase_37 AC 366 ms
41,344 KB
testcase_38 AC 362 ms
41,472 KB
testcase_39 AC 354 ms
41,344 KB
testcase_40 AC 359 ms
41,472 KB
testcase_41 AC 24 ms
18,048 KB
testcase_42 AC 23 ms
17,792 KB
testcase_43 AC 23 ms
18,176 KB
testcase_44 AC 56 ms
20,480 KB
testcase_45 AC 51 ms
20,608 KB
testcase_46 AC 62 ms
20,480 KB
testcase_47 AC 331 ms
39,808 KB
testcase_48 AC 279 ms
41,344 KB
testcase_49 AC 299 ms
41,088 KB
testcase_50 AC 369 ms
40,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class TEST{
	static void Main(){
		var d = ria();
		int N = d[0];
		int M = d[1];
		long[] A = rla();
		long[] B = rla();
		
		int[] C = new int[N+2];
		long[] D = new long[N+2];
		for(int i=0;i<N+2;i++)D[i] = (long)1e18;
		D[0] = -1;
		
		int ptr = 0;
		long bak = -1;
		Array.Sort(A);
		for(int i=0;i<N;i++){
			if( bak != A[i] ){
				ptr++;
				D[ptr] = A[i];
				bak = A[i];
			}
		}
		ptr = 1;
		for(int i=0;i<N;i++){
			if( D[ptr] != A[i]){
				ptr++;
			}
			C[ptr]++;
		}
		
		for(int i=0;i<M;i++){
			
			int l = 0;
			int r = ptr+1;
			int c = 0;
			
			int ret = 0;
			
			while(r-l>1){
				c = (l+r)/2;
				if(D[c]<B[i]){
					l = c;
				}else{
					r = c;
				}
			}
			while( c>0 && D[c]>=B[i] )c--;
			while( c<ptr && D[c]<B[i] )c++;
			
			ret = 0;
			if(D[c] == B[i]) ret = C[c];
			Console.Write(i==0?"{0}":" {0}",ret);
		}
		Console.WriteLine();
	}
	
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
}
0