結果

問題 No.1354 Sambo's Treasure
ユーザー jupirojupiro
提出日時 2021-01-19 13:37:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 4,210 bytes
コンパイル時間 1,493 ms
コンパイル使用メモリ 145,592 KB
実行使用メモリ 27,616 KB
最終ジャッジ日時 2024-05-09 16:41:03
合計ジャッジ時間 8,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
26,812 KB
testcase_01 AC 28 ms
26,880 KB
testcase_02 AC 29 ms
26,752 KB
testcase_03 AC 27 ms
26,880 KB
testcase_04 AC 27 ms
26,752 KB
testcase_05 AC 26 ms
26,856 KB
testcase_06 AC 28 ms
26,752 KB
testcase_07 AC 30 ms
26,752 KB
testcase_08 AC 31 ms
26,752 KB
testcase_09 AC 28 ms
26,880 KB
testcase_10 AC 28 ms
26,752 KB
testcase_11 AC 30 ms
26,872 KB
testcase_12 AC 28 ms
26,864 KB
testcase_13 AC 29 ms
26,752 KB
testcase_14 AC 27 ms
26,740 KB
testcase_15 AC 28 ms
26,752 KB
testcase_16 AC 27 ms
26,880 KB
testcase_17 AC 27 ms
26,860 KB
testcase_18 AC 28 ms
26,752 KB
testcase_19 AC 28 ms
26,880 KB
testcase_20 AC 27 ms
26,752 KB
testcase_21 AC 26 ms
26,880 KB
testcase_22 AC 26 ms
26,880 KB
testcase_23 AC 135 ms
27,592 KB
testcase_24 AC 141 ms
27,392 KB
testcase_25 AC 134 ms
27,520 KB
testcase_26 AC 134 ms
27,432 KB
testcase_27 AC 136 ms
27,336 KB
testcase_28 AC 135 ms
27,444 KB
testcase_29 AC 141 ms
27,392 KB
testcase_30 AC 135 ms
27,264 KB
testcase_31 AC 137 ms
27,440 KB
testcase_32 AC 137 ms
27,392 KB
testcase_33 AC 137 ms
27,436 KB
testcase_34 AC 140 ms
27,520 KB
testcase_35 AC 139 ms
27,616 KB
testcase_36 AC 140 ms
27,504 KB
testcase_37 AC 138 ms
27,420 KB
testcase_38 AC 130 ms
27,520 KB
testcase_39 AC 137 ms
27,476 KB
testcase_40 AC 141 ms
27,408 KB
testcase_41 AC 136 ms
27,472 KB
testcase_42 AC 137 ms
27,520 KB
testcase_43 AC 33 ms
27,008 KB
testcase_44 AC 31 ms
26,880 KB
testcase_45 AC 34 ms
26,880 KB
testcase_46 AC 32 ms
26,824 KB
testcase_47 AC 33 ms
27,028 KB
testcase_48 AC 36 ms
26,868 KB
testcase_49 AC 34 ms
27,008 KB
testcase_50 AC 33 ms
27,008 KB
testcase_51 AC 36 ms
26,988 KB
testcase_52 AC 37 ms
26,920 KB
testcase_53 AC 35 ms
26,980 KB
testcase_54 AC 33 ms
26,880 KB
testcase_55 AC 34 ms
26,868 KB
testcase_56 AC 37 ms
26,880 KB
testcase_57 AC 34 ms
27,024 KB
testcase_58 AC 38 ms
26,880 KB
testcase_59 AC 36 ms
26,880 KB
testcase_60 AC 35 ms
27,008 KB
testcase_61 AC 33 ms
27,008 KB
testcase_62 AC 37 ms
26,880 KB
testcase_63 AC 134 ms
27,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>
#include <numeric>
#include <cctype>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <utility>
#include <fstream>

using namespace std;
typedef long long ll;
using ull = unsigned long long;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
//template<typename T> T gcd(T a, T b) { a = abs(a), b = abs(b); while (b > 0) { tie(a, b) = make_pair(b, a % b); }return a; }
//mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());

constexpr long long INF = 1LL << 60;
constexpr int inf = 1000000007;
//constexpr long long mod = 1000000007LL;
constexpr long long  mod = 998244353;

struct mint {
	long long x;
	mint(long long x = 0) :x((x% mod + mod) % mod) {}
	mint& operator+=(const mint a) {
		if ((x += a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator-=(const mint a) {
		if ((x += mod - a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator*=(const mint a) {
		(x *= a.x) %= mod;
		return *this;
	}
	mint operator+(const mint a) const {
		mint res(*this);
		return res += a;
	}
	mint operator-(const mint a) const {
		mint res(*this);
		return res -= a;
	}
	mint operator*(const mint a) const {
		mint res(*this);
		return res *= a;
	}
	mint pow(ll t) const {
		if (!t) return 1;
		mint a = pow(t >> 1);
		a *= a;
		if (t & 1) a *= *this;
		return a;
	}

	// for prime mod
	mint inv() const {
		return pow(mod - 2);
	}
	mint& operator/=(const mint a) {
		return (*this) *= a.inv();
	}
	mint operator/(const mint a) const {
		mint res(*this);
		return res /= a;
	}
};

const int MAX = (int)1e6;
long long fac[MAX], finv[MAX], inv[MAX];

void COMinit() {
	fac[0] = fac[1] = 1;
	finv[0] = finv[1] = 1;
	inv[1] = 1;
	for (int i = 2; i < MAX; i++) {
		fac[i] = fac[i - 1] * i % mod;
		inv[i] = mod - inv[mod % i] * (mod / i) % mod;
		finv[i] = finv[i - 1] * inv[i] % mod;
	}
}

mint COM(int n, int k) {
	if (n < k) return 0;
	if (n < 0 || k < 0) return 0;
	return mint(fac[n] * (finv[k] * finv[n - k] % mod) % mod);
}

mint LCOM(ll n, ll k) {
	if (n < k) return 0;
	if (n < 0 || k < 0) return 0;
	if (k > n / 2) k = n - k;
	mint res = 1;
	for (int i = 0; i < k; i++) res *= (n - i);
	res *= finv[k];
	return res;
}

int main()
{

	std::cin.tie(nullptr);
	std::ios::sync_with_stdio(false);

	COMinit();
	int n, m, L, K; cin >> n >> m >> L >> K;
	vector<pair<int, int>> cp(m + 2); for (int i = 1; i <= m; i++) cin >> cp[i].first >> cp[i].second;
	cp[m + 1] = { n,n };
	vector<pair<int, int>> tg(L); for (auto& p : tg) cin >> p.first >> p.second;
	sort(tg.begin(), tg.end());
	int tcur = 0;
	vector dp1(2, vector<mint>(L + 1));
	int cur = 0;
	int nxt = 1;
	dp1[0][0] = 1;
	for (int i = 0; i + 1 < (int)cp.size(); i++) {
		vector<pair<int, int>> vp; vp.emplace_back(cp[i]);
		while (tcur < L and tg[tcur] <= cp[i + 1]) vp.emplace_back(tg[tcur++]);
		vp.emplace_back(cp[i + 1]);
		int sz = (int)vp.size();
		vector dp2(sz, vector<mint>(sz + 1));
		dp2[0][0] = 1;
		for (int j = 1; j < sz; j++) {
			for (int k = sz; k >= 0; k--) {
				for (int l = 0; l < j; l++) {
					int dx = vp[j].first - vp[l].first;
					int dy = vp[j].second - vp[l].second;
					if (dx < 0 or dy < 0) continue;
					if (j + 1 < sz and k > 0) dp2[j][k] += dp2[l][k - 1] * COM(dx + dy, dx);
					if (j + 1 == sz) dp2[j][k] += dp2[l][k] * COM(dx + dy, dx);
				}
				if ((j + 1 < sz and k > 0) or j + 1 == sz) for (int l = k + 1; l <= sz; l++) dp2[j][k] -= dp2[j][l];
			}
		}
		for (int j = 0; j <= L; j++) dp1[nxt][j] = 0;
		for (int j = 0; j <= L; j++) {
			for (int k = 0; k <= sz; k++) {
				if (j + k <= L) {
					dp1[nxt][j + k] += dp1[cur][j] * dp2.back()[k];
				}
			}
		}
		swap(cur, nxt);
	}
	mint res = 0; for (int i = 0; i <= min(L, K); i++) res += dp1[cur][i];
	cout << res.x << "\n";
}
0