結果

問題 No.801 エレベーター
ユーザー aa
提出日時 2019-03-17 23:03:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,208 bytes
コンパイル時間 1,782 ms
コンパイル使用メモリ 174,592 KB
実行使用メモリ 45,344 KB
最終ジャッジ日時 2024-07-08 01:45:46
合計ジャッジ時間 5,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 52 ms
6,948 KB
testcase_04 AC 51 ms
6,944 KB
testcase_05 AC 48 ms
6,940 KB
testcase_06 AC 50 ms
6,940 KB
testcase_07 AC 51 ms
6,944 KB
testcase_08 AC 52 ms
6,944 KB
testcase_09 AC 49 ms
6,940 KB
testcase_10 AC 49 ms
6,940 KB
testcase_11 AC 49 ms
6,944 KB
testcase_12 AC 71 ms
6,940 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;

template <int p>
struct Modint
{
	int value;

	Modint() : value(0) {}
	Modint(long x) : value(x >= 0 ? x % p : (p + x % p) % p) {}

	inline Modint &operator+=(const Modint &b)
	{
		if ((this->value += b.value) >= p)
			this->value -= p;
		return (*this);
	}
	inline Modint &operator-=(const Modint &b)
	{
		if ((this->value += p - b.value) >= p)
			this->value -= p;
		return (*this);
	}
	inline Modint &operator*=(const Modint &b)
	{
		this->value = (int)((1LL * this->value * b.value) % p);
		return (*this);
	}
	inline Modint &operator/=(const Modint &b)
	{
		(*this) *= b.inverse();
		return (*this);
	}

	Modint operator+(const Modint &b) const { return Modint(*this) += b; }
	Modint operator-(const Modint &b) const { return Modint(*this) -= b; }
	Modint operator*(const Modint &b) const { return Modint(*this) *= b; }
	Modint operator/(const Modint &b) const { return Modint(*this) /= b; }

	inline Modint &operator++(int) { return (*this) += 1; }
	inline Modint &operator--(int) { return (*this) -= 1; }

	inline bool operator==(const Modint &b) const { return this->value == b.value; }
	inline bool operator!=(const Modint &b) const { return this->value != b.value; }
	inline bool operator<(const Modint &b) const { return this->value < b.value; }
	inline bool operator<=(const Modint &b) const { return this->value <= b.value; }
	inline bool operator>(const Modint &b) const { return this->value > b.value; }
	inline bool operator>=(const Modint &b) const { return this->value >= b.value; }

	//requires that "this->value and p are co-prime"
	// a_i * v + a_(i+1) * p = r_i
	// r_i = r_(i+1) * q_(i+1) * r_(i+2)
	// q == 1 (i > 1)
	// reference: https://atcoder.jp/contests/agc026/submissions/2845729 (line:93)
	inline Modint inverse() const
	{
		assert(this->value != 0);
		int r0 = p, r1 = this->value, a0 = 0, a1 = 1;
		while (r1)
		{
			int q = r0 / r1;
			r0 -= q * r1;
			swap(r0, r1);
			a0 -= q * a1;
			swap(a0, a1);
		}
		return Modint(a0);
	}

	friend istream &operator>>(istream &is, Modint<p> &a)
	{
		long t;
		is >> t;
		a = Modint<p>(t);
		return is;
	}
	friend ostream &operator<<(ostream &os, const Modint<p> &a)
	{
		return os << a.value;
	}
};

const int MOD = 1e9 + 7;

using Int = Modint<MOD>;

void solve()
{
	int n, m, k;
	cin >> n >> m >> k;
	//L -> R
	vector<vector<Int>> imos(n+2, vector<Int>(n+2));
	while(m--)
	{
		int l, r;
		cin >> l >> r;
		r++;
		imos[l][l]++;
		imos[l][r]--;
		imos[r][l]--;
		imos[r][r]++;
	}
	for (int i = 0; i <= n; i++)
	{
		for (int j = 0; j <= n+1; j++)
		{
			imos[i+1][j] += imos[i][j];
		}
	}
	for (int i = 0; i <= n+1; i++)
	{
		for (int j = 0; j <= n; j++)
		{
			imos[i][j+1] += imos[i][j];
		}
	}
	vector<Int> dp(n);
	dp[0] = 1;
	while(k--)
	{
		vector<Int> nx(n);
		for (int l = 0; l < n; l++)
		{
			Int d = imos[l+1][l+1];
			nx[l] += dp[l]*d;
			//cout << l << ' ' << d << endl;
			for (int r = l+1; r < n; r++)
			{
				Int dd = imos[l+1][r+1];
				nx[r] += dp[l] * dd;
				nx[l] += dp[r] * dd;
				//cout << l << ' ' << r << ' ' << dd << endl;
			}
		}
		swap(dp, nx);
	}
	cout << dp.back() << endl;
}

int main(void)
{
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0