結果

問題 No.709 優勝可能性
ユーザー 37zigen37zigen
提出日時 2018-06-29 23:09:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,989 ms / 3,500 ms
コード長 1,278 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 79,672 KB
実行使用メモリ 104,336 KB
最終ジャッジ日時 2024-07-01 00:13:04
合計ジャッジ時間 23,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,228 KB
testcase_01 AC 139 ms
54,392 KB
testcase_02 AC 141 ms
54,104 KB
testcase_03 AC 141 ms
54,372 KB
testcase_04 AC 135 ms
54,220 KB
testcase_05 AC 139 ms
54,252 KB
testcase_06 AC 140 ms
54,216 KB
testcase_07 AC 132 ms
53,992 KB
testcase_08 AC 137 ms
54,328 KB
testcase_09 AC 140 ms
54,332 KB
testcase_10 AC 1,348 ms
75,292 KB
testcase_11 AC 928 ms
69,936 KB
testcase_12 AC 1,984 ms
76,512 KB
testcase_13 AC 1,928 ms
77,040 KB
testcase_14 AC 1,917 ms
77,476 KB
testcase_15 AC 1,880 ms
77,456 KB
testcase_16 AC 1,969 ms
79,856 KB
testcase_17 AC 1,970 ms
104,336 KB
testcase_18 AC 131 ms
54,464 KB
testcase_19 AC 138 ms
54,288 KB
testcase_20 AC 1,979 ms
75,724 KB
testcase_21 AC 1,989 ms
76,004 KB
testcase_22 AC 129 ms
54,228 KB
testcase_23 AC 131 ms
54,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.PriorityQueue;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		PrintWriter pw = new PrintWriter(System.out);
		int N = sc.nextInt();
		int M = sc.nextInt();
		int[][] R = new int[N][M];
		PriorityQueue<Long>[] pqs = new PriorityQueue[M];
		for (int i = 0; i < pqs.length; ++i) {
			pqs[i] = new PriorityQueue<>();
		}
		int[] curVal = new int[M];
		int[] vanish = new int[N];
		int ans = 0;
		for (int i = 0; i < N; ++i) {
			for (int j = 0; j < M; ++j) {
				R[i][j] = sc.nextInt();
			}
		}
		for (int i = 0; i < N; ++i) {
			for (int j = 0; j < M; ++j) {
				curVal[j] = Math.max(curVal[j], R[i][j]);
				pqs[j].add((long) R[i][j] << 32 | i);
			}
			++ans;
			for (int j = 0; j < M; ++j) {
				while (!pqs[j].isEmpty() && (pqs[j].peek() >> 32) < curVal[j]) {
					int idx = pqs[j].poll().intValue();
					++vanish[idx];
					if (vanish[idx] == M) {
						--ans;
					}
				}
			}
			pw.println(ans);
		}
		pw.close();
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0