結果

問題 No.2435 Order All Company
ユーザー shobonvipshobonvip
提出日時 2023-08-18 21:31:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 2,386 bytes
コンパイル時間 4,417 ms
コンパイル使用メモリ 269,324 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 03:24:09
合計ジャッジ時間 5,844 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 37 ms
5,376 KB
testcase_06 AC 38 ms
5,376 KB
testcase_07 AC 19 ms
5,376 KB
testcase_08 AC 37 ms
5,376 KB
testcase_09 AC 38 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 34 ms
5,376 KB
testcase_15 AC 36 ms
5,376 KB
testcase_16 AC 33 ms
5,376 KB
testcase_17 AC 41 ms
5,376 KB
testcase_18 AC 29 ms
5,376 KB
testcase_19 AC 28 ms
5,376 KB
testcase_20 AC 27 ms
5,376 KB
testcase_21 AC 32 ms
5,376 KB
testcase_22 AC 33 ms
5,376 KB
testcase_23 AC 22 ms
5,376 KB
testcase_24 AC 32 ms
5,376 KB
testcase_25 AC 36 ms
5,376 KB
testcase_26 AC 34 ms
5,376 KB
testcase_27 AC 33 ms
5,376 KB
testcase_28 AC 30 ms
5,376 KB
testcase_29 AC 33 ms
5,376 KB
testcase_30 AC 32 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

mint det(vector<vector<mint>> &a){
	assert(a.size() == a[0].size());
	int n = a.size();
	vector<vector<mint>> b = a;
	int piv = 0;
	mint ret = 1;
	for (int j=0; j<n; j++){
		for (int i=piv; i<n; i++){
			if (b[i][j] != 0){
				swap(b[i], b[piv]);
				if (i != piv) ret = -ret;
				mint ip = b[piv][j].inv();
				for (int l=0; l<n; l++){
					if (l != piv){
						mint tmp = ip * b[l][j];
						for (int k=j; k<n; k++){
							b[l][k] -= tmp * b[piv][k];
						}
					}
				}
				ret *= b[piv][j];
				for (int k=j; k<n; k++){
					b[piv][k] *= ip;
				}
				piv++;
				break;
			}
		}
	}
	for (int i=0; i<n; i++){
		ret *= b[i][i];
	}
	return ret;
}


int main(){
	int n, k; cin >> n >> k;
	mint ans = 0;
	vector<vector<vector<mint>>> r(k, vector<vector<mint>>(n-1, vector<mint>(n-1)));
	rep(i,0,k){
		int t; cin >> t;
		rep(j,0,t){
			int a, b; cin >> a >> b;
			a--; b--;
			int x = a - 1;
			int y = b - 1;
			if (x >= 0){
				r[i][x][x]++;
			}
			if (y >= 0){
				r[i][y][y]++;
			}
			if (x >= 0 && y >= 0){
				r[i][x][y]--;
				r[i][y][x]--;
			}
		}
	}
	rep(i,1,1<<k){
		vector<vector<mint>> g(n-1, vector<mint>(n-1));
		mint cnt = 1;
		rep(j,0,k){
			if (i >> j & 1){
				rep(x,0,n-1){
					rep(y,0,n-1){
						g[x][y] += r[j][x][y];
					}
				}
			}else{
				cnt *= -1;
			}
		}
		ans += cnt * det(g);
	}
	cout << ans.val() << '\n';
}

0