結果

問題 No.2251 Marking Grid
ユーザー shobonvipshobonvip
提出日時 2023-03-17 23:16:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,232 ms / 3,000 ms
コード長 1,277 bytes
コンパイル時間 4,124 ms
コンパイル使用メモリ 274,608 KB
実行使用メモリ 61,884 KB
最終ジャッジ日時 2024-09-18 12:20:23
合計ジャッジ時間 13,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 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 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 928 ms
52,952 KB
testcase_23 AC 1,232 ms
61,884 KB
testcase_24 AC 24 ms
5,412 KB
testcase_25 AC 1,157 ms
61,752 KB
testcase_26 AC 181 ms
16,624 KB
testcase_27 AC 546 ms
35,480 KB
testcase_28 AC 19 ms
5,376 KB
testcase_29 AC 598 ms
37,460 KB
testcase_30 AC 147 ms
14,276 KB
testcase_31 AC 94 ms
10,828 KB
testcase_32 AC 42 ms
6,292 KB
testcase_33 AC 745 ms
40,200 KB
testcase_34 AC 54 ms
7,136 KB
testcase_35 AC 315 ms
21,524 KB
testcase_36 AC 423 ms
26,204 KB
testcase_37 AC 625 ms
34,036 KB
testcase_38 AC 23 ms
5,376 KB
testcase_39 AC 15 ms
5,376 KB
testcase_40 AC 270 ms
19,900 KB
testcase_41 AC 127 ms
11,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;

typedef modint998244353 mint;
typedef long long ll;

int main(){
	int h,w;cin>>h>>w;
	vector<vector<int>> a(h, vector<int>(w));
	vector<ll> v(0);
	for (int i=0; i<h; i++){
		for (int j=0; j<w; j++){
			cin >> a[i][j];
			v.push_back(((ll)a[i][j] << (ll)30) + (i<<15) + j);
		}
	}
	sort(v.begin(), v.end());
	reverse(v.begin(), v.end());
	ll mask = (1<<15) - 1;
	vector<int> x(h);
	dsu uf(w);
	int cnt = w;
	int cnth = h;
	vector<set<int>> hr(h);
	mint ans = 0;
	for (ll ty: v){
		int j = ty & mask;
		int i = (ty>>15) & mask;
		mint val = ty >> 30;
		int tv = cnt + cnth - 2;
		int mode = 1;
		auto g = hr[i].lower_bound(j);
		if (g != hr[i].end()){
			int k = *g;
			if (uf.same(k,j)) mode = 0;
		}
		if (g != hr[i].begin()){
			g--;
			int k = *g;
			if (uf.same(k,j)) mode = 0;
		}
		if (mode == 1){
			ans += mint(2).pow(tv) * val;
		}
		if (x[i] == 0){
			x[i] = 1;
			cnth -= 1;
		}
		g = hr[i].lower_bound(j);
		if (g != hr[i].end()){
			int k = *g;
			if (!uf.same(k,j)){
				uf.merge(k,j);
				cnt-=1;
			}
		}
		if (g != hr[i].begin()){
			g--;
			int k = *g;
			if (!uf.same(k,j)){
				uf.merge(k,j);
				cnt-=1;
			}
		}
		hr[i].insert(j);
	}
	cout << ans.val() <<endl;
}
0