結果

問題 No.2251 Marking Grid
ユーザー colognecologne
提出日時 2023-03-21 14:29:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 400 ms / 3,000 ms
コード長 543 bytes
コンパイル時間 5,486 ms
コンパイル使用メモリ 321,708 KB
実行使用メモリ 15,828 KB
最終ジャッジ日時 2024-09-18 14:22:36
合計ジャッジ時間 10,230 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 339 ms
15,716 KB
testcase_23 AC 400 ms
15,824 KB
testcase_24 AC 15 ms
5,376 KB
testcase_25 AC 399 ms
15,828 KB
testcase_26 AC 92 ms
6,612 KB
testcase_27 AC 222 ms
15,696 KB
testcase_28 AC 11 ms
5,376 KB
testcase_29 AC 233 ms
15,696 KB
testcase_30 AC 75 ms
6,612 KB
testcase_31 AC 51 ms
5,376 KB
testcase_32 AC 27 ms
5,376 KB
testcase_33 AC 331 ms
15,824 KB
testcase_34 AC 37 ms
5,376 KB
testcase_35 AC 164 ms
9,676 KB
testcase_36 AC 209 ms
9,552 KB
testcase_37 AC 284 ms
15,700 KB
testcase_38 AC 17 ms
5,376 KB
testcase_39 AC 11 ms
5,376 KB
testcase_40 AC 151 ms
9,552 KB
testcase_41 AC 75 ms
6,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using Mint = atcoder::modint998244353;
int main()
{
	int N, M;
	cin >> N >> M;
	vector<tuple<int, int, int>> V;
	for (int i = 0; i < N; ++i)
		for (int j = 0; j < M; ++j)
		{
			int t;
			cin >> t;
			V.emplace_back(t, i, j + N);
		}
	sort(V.rbegin(), V.rend());
	atcoder::dsu ufd(M + N);
	int c = N+M - 2;
	Mint ans = 0;
	for (auto [w, i, j] : V)
	{
		if (!ufd.same(i, j))
		{
			ufd.merge(i, j);
			ans += w * (Mint(2).pow(c));
			--c;
		}
	}
	cout << ans.val() << endl;
}
0