結果
問題 | No.2435 Order All Company |
ユーザー | shobonvip |
提出日時 | 2023-08-18 21:30:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,377 bytes |
コンパイル時間 | 4,593 ms |
コンパイル使用メモリ | 269,232 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 03:21:44 |
合計ジャッジ時間 | 6,696 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 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 | 42 ms
5,376 KB |
testcase_06 | AC | 42 ms
5,376 KB |
testcase_07 | AC | 21 ms
5,376 KB |
testcase_08 | AC | 41 ms
5,376 KB |
testcase_09 | AC | 42 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 36 ms
5,376 KB |
testcase_15 | AC | 39 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 42 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 31 ms
5,376 KB |
testcase_20 | AC | 31 ms
5,376 KB |
testcase_21 | AC | 35 ms
5,376 KB |
testcase_22 | AC | 36 ms
5,376 KB |
testcase_23 | AC | 24 ms
5,376 KB |
testcase_24 | AC | 36 ms
5,376 KB |
testcase_25 | AC | 36 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 35 ms
5,376 KB |
testcase_28 | AC | 33 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | AC | 36 ms
5,376 KB |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | WA | - |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | WA | - |
ソースコード
#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]; } } cnt *= -1; } } ans += cnt * det(g); } cout << ans.val() << '\n'; }