結果
問題 | No.2668 Trees on Graph Paper |
ユーザー | k1suxu |
提出日時 | 2024-03-09 00:26:46 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,683 bytes |
コンパイル時間 | 2,991 ms |
コンパイル使用メモリ | 249,528 KB |
実行使用メモリ | 550,296 KB |
最終ジャッジ日時 | 2024-09-29 21:02:56 |
合計ジャッジ時間 | 38,672 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
ソースコード
// #pragma GCC target("avx") // #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (int)n; i++) #define FOR(n) for(int i = 0; i < (int)n; i++) #define repi(i,a,b) for(int i = (int)a; i < (int)b; i++) #define all(x) x.begin(),x.end() //#define mp make_pair #define vi vector<int> #define vvi vector<vi> #define vvvi vector<vvi> #define vvvvi vector<vvvi> #define pii pair<int,int> #define vpii vector<pair<int,int>> template<typename T> bool chmax(T &a, const T b) {if(a<b) {a=b; return true;} else {return false;}} template<typename T> bool chmin(T &a, const T b) {if(a>b) {a=b; return true;} else {return false;}} using ll = long long; using ld = long double; using ull = unsigned long long; const ll INF = numeric_limits<long long>::max() / 2; const ld pi = 3.1415926535897932384626433832795028; const ll mod = 998244353; int dx[] = {1, 0, -1, 0, -1, -1, 1, 1}; int dy[] = {0, 1, 0, -1, -1, 1, -1, 1}; void solve() { const int MX = (5*1e6-1)*2-1; int n, m; cin >> n >> m; vector<vector<int>> dp(MX+1, vector<int>(3, 0)); dp[1][0] = 1, dp[1][1] = 1, dp[1][2] = 1; repi(i, 1, MX) { dp[i+1][0] = ((ll)dp[i][0] + (ll)dp[i][1]*(ll)(i+1)) % m; dp[i+1][1] = ((ll)dp[i][0] + (ll)dp[i][1] + (ll)dp[i][2]*(ll)(i+1)) % m; dp[i+1][2] = ((ll)dp[i][0] + (ll)dp[i][1] + (ll)dp[i][2]) % m; } ll ans = 1; repi(i, 1, 2*n) (ans *= (ll)i) %= m; repi(i, 1, n) (ans *= (ll)dp[i*2-1][2]) %= m; cout << (ans%mod+mod)%mod << endl; } signed main() { cin.tie(nullptr); ios::sync_with_stdio(false); solve(); return 0; }