結果

問題 No.568 じゃんじゃん 落とす 委員会
ユーザー 37zigen37zigen
提出日時 2020-04-13 06:19:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 956 ms / 1,000 ms
コード長 1,800 bytes
コンパイル時間 2,752 ms
コンパイル使用メモリ 83,140 KB
実行使用メモリ 89,020 KB
最終ジャッジ日時 2024-09-23 03:32:04
合計ジャッジ時間 20,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 951 ms
75,388 KB
testcase_01 AC 939 ms
88,672 KB
testcase_02 AC 275 ms
53,484 KB
testcase_03 AC 288 ms
53,636 KB
testcase_04 AC 314 ms
53,452 KB
testcase_05 AC 236 ms
53,196 KB
testcase_06 AC 300 ms
53,704 KB
testcase_07 AC 285 ms
53,852 KB
testcase_08 AC 285 ms
53,360 KB
testcase_09 AC 233 ms
52,640 KB
testcase_10 AC 234 ms
52,700 KB
testcase_11 AC 327 ms
53,296 KB
testcase_12 AC 899 ms
87,740 KB
testcase_13 AC 949 ms
84,504 KB
testcase_14 AC 910 ms
87,244 KB
testcase_15 AC 857 ms
76,012 KB
testcase_16 AC 860 ms
87,532 KB
testcase_17 AC 902 ms
87,636 KB
testcase_18 AC 890 ms
86,112 KB
testcase_19 AC 952 ms
86,660 KB
testcase_20 AC 956 ms
84,336 KB
testcase_21 AC 955 ms
89,020 KB
testcase_22 AC 920 ms
88,792 KB
testcase_23 AC 486 ms
54,092 KB
testcase_24 AC 239 ms
52,788 KB
testcase_25 AC 233 ms
53,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	
	void solve(int N,int M,int[] X,int[] A,int[] B) {
		ArrayList<Integer>[][] list=new ArrayList[2][100001];
		for (int i=0;i<list.length;++i) 
			for (int j=0;j<list[i].length;++j) list[i][j]=new ArrayList<>();
		int over3=0;
		int over2=0;
		for (int i=0;i<N;++i) {
			if (X[i]+1>=2) ++over2;
			if (X[i]+1>=3) ++over3;
			list[0][A[i]].add(i);
			list[1][B[i]].add(i);
		}
		int[] solve=new int[N];
		Arrays.fill(solve, 1);
		int sb=0;
		int sa=100001;
		int ans=Integer.MAX_VALUE/3;
		while(true) {
			while (sb<=100000) { // over2>=Mが成り立つギリギリまでsbを大きくする。
				int nover2=over2;
				int nover3=over3;
				for (int i:list[1][sb]) {
					if (solve[i]+X[i]==2) --nover2;
					if (solve[i]+X[i]==3) --nover3;
				}
				if (nover2>=M) {
					over2=nover2;
					over3=nover3;
					for (int i:list[1][sb]) --solve[i];
					++sb;
				} else {
					break;
				}
				if (over2>=M) ans=Math.min(ans, over3);
			}
			--sa;
			if (sa==-1) break;
			for (int i:list[0][sa]) {
				if (solve[i]+X[i]==1) ++over2;
				if (solve[i]+X[i]==2) ++over3;
				++solve[i];
			}
		}
		System.out.println(ans);
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		PrintWriter pw=new PrintWriter(System.out);
		int N=sc.nextInt();
		int M=sc.nextInt();
		int[] X=new int[N];
		int[] A=new int[N];
		int[] B=new int[N];
		for (int i=0;i<N;++i) {
			X[i]=Integer.parseInt(sc.next());
			A[i]=Integer.parseInt(sc.next());
			B[i]=Integer.parseInt(sc.next());
		}
		solve(N,M,X,A,B);
		pw.close();
	} 
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
	
    public static void main(String[] args) {
    	new Main().run();
    }
}
0