結果

問題 No.2930 Larger Mex
ユーザー viral8viral8
提出日時 2024-10-19 18:30:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,428 ms / 2,000 ms
コード長 854 bytes
コンパイル時間 2,895 ms
コンパイル使用メモリ 90,300 KB
実行使用メモリ 80,924 KB
最終ジャッジ日時 2024-10-19 18:31:36
合計ジャッジ時間 53,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,188 KB
testcase_01 AC 117 ms
53,084 KB
testcase_02 AC 109 ms
52,312 KB
testcase_03 AC 197 ms
54,508 KB
testcase_04 AC 210 ms
56,904 KB
testcase_05 AC 204 ms
56,872 KB
testcase_06 AC 210 ms
54,716 KB
testcase_07 AC 211 ms
56,964 KB
testcase_08 AC 1,053 ms
71,692 KB
testcase_09 AC 1,067 ms
71,116 KB
testcase_10 AC 1,070 ms
71,632 KB
testcase_11 AC 860 ms
69,384 KB
testcase_12 AC 1,304 ms
73,668 KB
testcase_13 AC 1,143 ms
71,984 KB
testcase_14 AC 1,341 ms
73,808 KB
testcase_15 AC 1,000 ms
71,284 KB
testcase_16 AC 1,038 ms
69,352 KB
testcase_17 AC 1,106 ms
71,540 KB
testcase_18 AC 975 ms
71,480 KB
testcase_19 AC 1,229 ms
70,648 KB
testcase_20 AC 1,122 ms
70,808 KB
testcase_21 AC 1,122 ms
71,648 KB
testcase_22 AC 1,270 ms
75,040 KB
testcase_23 AC 1,088 ms
71,848 KB
testcase_24 AC 936 ms
71,300 KB
testcase_25 AC 1,381 ms
80,924 KB
testcase_26 AC 786 ms
71,436 KB
testcase_27 AC 734 ms
65,900 KB
testcase_28 AC 818 ms
69,708 KB
testcase_29 AC 792 ms
69,848 KB
testcase_30 AC 738 ms
65,768 KB
testcase_31 AC 653 ms
64,180 KB
testcase_32 AC 745 ms
67,808 KB
testcase_33 AC 741 ms
67,752 KB
testcase_34 AC 1,055 ms
71,768 KB
testcase_35 AC 981 ms
71,488 KB
testcase_36 AC 848 ms
70,748 KB
testcase_37 AC 1,062 ms
73,600 KB
testcase_38 AC 1,144 ms
73,868 KB
testcase_39 AC 1,006 ms
70,960 KB
testcase_40 AC 1,006 ms
71,592 KB
testcase_41 AC 965 ms
71,600 KB
testcase_42 AC 831 ms
71,324 KB
testcase_43 AC 797 ms
70,748 KB
testcase_44 AC 832 ms
70,680 KB
testcase_45 AC 797 ms
70,444 KB
testcase_46 AC 871 ms
69,856 KB
testcase_47 AC 763 ms
69,984 KB
testcase_48 AC 727 ms
63,136 KB
testcase_49 AC 907 ms
72,000 KB
testcase_50 AC 845 ms
71,592 KB
testcase_51 AC 1,142 ms
72,712 KB
testcase_52 AC 1,428 ms
79,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.TreeMap;

class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		int[] A = new int[N];
		for(int i=0;i<N;i++)
			A[i] = sc.nextInt();
		TreeMap<Integer,Integer> map = new TreeMap<>();
		int r = 0;
		int[] ans = new int[N+1];
		for(int l=0;l<N;l++){
			if(l==r){
				if(A[r]<M)
					map.merge(A[r],1,Integer::sum);
				r++;
			}
			while(r<N&&map.size()<M){
				if(A[r]<M)
					map.merge(A[r],1,Integer::sum);
				r++;
			}
			if(map.size()>=M){
				ans[r-l-1]++;
				ans[N-l]--;
			}
			if(A[l]<M)
				map.merge(A[l],-1,(a,b)->a+b==0?null:a+b);
		}
		StringBuilder sb = new StringBuilder();
		for(int i=0;i<N;i++){
			sb.append(ans[i]);
			sb.append("\n");
			ans[i+1] += ans[i];
		}
		System.out.print(sb.toString());
	}
}
0