結果
問題 | No.1691 Badugi |
ユーザー | Kude |
提出日時 | 2021-09-24 23:19:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,487 bytes |
コンパイル時間 | 3,595 ms |
コンパイル使用メモリ | 263,680 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-07-05 11:32:52 |
合計ジャッジ時間 | 4,460 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
11,136 KB |
testcase_01 | AC | 13 ms
11,392 KB |
testcase_02 | WA | - |
testcase_03 | AC | 14 ms
11,264 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 13 ms
11,264 KB |
testcase_07 | AC | 14 ms
11,136 KB |
testcase_08 | AC | 13 ms
11,212 KB |
testcase_09 | AC | 13 ms
11,136 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; #define rep(i,n)for (int i = 0; i < int(n); ++i) #define rrep(i,n)for (int i = int(n)-1; i >= 0; --i) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() template<class T> void chmax(T& a, const T& b) {a = max(a, b);} template<class T> void chmin(T& a, const T& b) {a = min(a, b);} using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; using mint = modint998244353; constexpr int FACT_SIZE = 1000000; mint Fact[FACT_SIZE + 1]; mint iFact[FACT_SIZE + 1]; const auto fact_init = [] { Fact[0] = mint::raw(1); for(int i = 1; i <= FACT_SIZE; ++i) { Fact[i] = Fact[i-1] * i; } iFact[FACT_SIZE] = Fact[FACT_SIZE].inv(); for(int i = FACT_SIZE; i; --i) { iFact[i-1] = iFact[i] * i; } return false; }(); mint comb(int n, int k) { if (k == 0) return mint::raw(1); assert(n >= 0 && k >= 0); if (k > n) return mint::raw(0); return Fact[n] * iFact[n - k] * iFact[k]; } mint icomb(int n, int k) { return iFact[n] * Fact[n - k] * Fact[k]; } mint fact(int n) {return Fact[n];} mint perm(int n, int k) { if (n < k) return 0; assert(0 <= n); return Fact[n] * iFact[n - k]; } int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m, k; cin >> n >> m >> k; mint ans; // mint pre; if (n >= 3 && m >= 3 && k >= 5) { ans += comb(n, k) * perm(m, k) * perm(k, 3); // cerr << (ans - pre).val() << endl; // pre = ans; } rep(_, 2) { if (n >= 3 && k >= 4) { ans += perm(n, 3) * perm(m, 2) / 2 * comb(n - 3, k - 4) * perm(m - 2, k - 4); // cerr << (ans - pre).val() << endl; // pre = ans; } swap(n, m); } if (k >= 4) { // ans += comb(n, 2)* comb(m, 2) * comb(n - 2, k - 4) * perm(m - 2, k - 4); ans += comb(n, k - 2) * perm(m, k - 2) * comb(k - 2, 2) / 2; // cerr << (ans - pre).val() << endl; // pre = ans; } if (k >= 6 && n >= 4 && m >= 4) { // ans += comb(n, k) * perm(m, k) * comb(k, 2) * comb(k - 2, 2) / 2; ans += comb(n, k - 2) * perm(m, k - 2) * perm(k - 2, 2) * perm(k - 4, 2) / 2; // cerr << (ans - pre).val() << endl; // pre = ans; } rep(_, 2) { if (k >= 5 && n >= 4 && m >= 3) { ans += perm(n, 2) * perm(m, 2) * comb(n - 2, 2) * (m - 2) * comb(n - 4, k - 5) * perm(m - 3, k - 5); // cerr << (ans - pre).val() << endl; // pre = ans; } if (k >= 4 && n >= 4) { ans += comb(n, 2) * m * comb(n - 2, 2) * (m - 1) / 2 * comb(n - 4, k - 4) * perm(m - 2, k - 4); // cerr << (ans - pre).val() << endl; // pre = ans; } swap(n, m); } if (k >= 4 && n >= 3 && m >= 3) { ans += comb(n, 2) * (n - 2) * comb(m, 2) * (m - 2) * comb(n - 3, k - 4) * perm(m - 3, k - 4); // cerr << (ans - pre).val() << endl; // pre = ans; } rep(_, 2) { if (n >= 3) { ans += comb(n, 3) * m * comb(n - 3, k - 3) * perm(m - 1, k - 3); } if (n >= 3 && k >= 4) { ans += comb(n, 3) * perm(m, 2) * 3 * comb(n - 3, k - 4) * perm(m - 2, k - 4); } if (n >= 3 && m >= 3 && k >= 5) { // ans += comb(n, 3) * m * comb(m - 1, 2) * 3 * 2 * comb(n - 3, k - 5) * perm(m - 3, k - 5); ans += perm(n, 3) * perm(m, 2) / 2 * (m - 2) * comb(n - 3, k - 5) * perm(m - 3, k - 5); } swap(n, m); } // { // int cnt = 0; // rep(s, 1 << n * m) { // if (__builtin_popcount(s) != k) continue; // int from = n * m, to = from + 1; // mf_graph<int> g(n * m + 2); // rep(i, n) rep(j, m) if (s >> (i * m + j) & 1) g.add_edge(i,n+j,1); // rep(i, n) g.add_edge(from, i, 1); // rep(j, m) g.add_edge(n + j, to, 1); // int f = g.flow(from, to); // if (f == k - 2) { // cout << s << endl; // rep(i, n) rep(j, m) if (s >> (i * m + j) & 1) { // cout << i << ' ' << j << endl; // } // cout << endl; // cnt++; // } // } // cout << cnt << endl; // } cout << ans.val() << endl; }