結果

問題 No.391 CODING WAR
ユーザー むかでむかで
提出日時 2019-09-04 11:49:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 3,369 bytes
コンパイル時間 1,288 ms
コンパイル使用メモリ 147,888 KB
実行使用メモリ 4,776 KB
最終ジャッジ日時 2023-08-27 01:28:54
合計ジャッジ時間 3,246 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 34 ms
4,776 KB
testcase_10 AC 32 ms
4,656 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 30 ms
4,676 KB
testcase_14 AC 25 ms
4,376 KB
testcase_15 AC 28 ms
4,408 KB
testcase_16 AC 17 ms
4,380 KB
testcase_17 AC 20 ms
4,376 KB
testcase_18 AC 15 ms
4,376 KB
testcase_19 AC 14 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define RITR(x,c) for(__typeof(c.rbegin()) x=c.rbegin();x!=c.rend();x++)
#define setp(n) fixed << setprecision(n)

#define lf double
#define ll long long
#define vll vector<ll>
#define vi vector<int>
#define pll pair<ll,ll>
#define pi pair<int,int>

#define all(a) (a.begin()),(a.end())
#define rall(a) (a.rbegin()),(a.rend())
#define fi first
#define se second
#define pb push_back
#define mp make_pair
#define ins insert

using namespace std;

template<::std::uint_fast64_t mod>
class ModInt{
private:
	using value_type = ::std::uint_fast64_t;
	value_type n;
public:
	ModInt() : n(0) {}
	ModInt(value_type n_) : n(n_ % mod) {}
	ModInt(const ModInt& m) : n(m.n) {}

	template<typename T>
	explicit operator T() const { return static_cast<T>(n); }
	value_type get() const { return n; }

	friend ::std::ostream& operator<<(::std::ostream &os, const ModInt<mod> &a) {
		return os << a.n;
	}

	friend ::std::istream& operator>>(::std::istream &is, ModInt<mod> &a) {
		value_type x;
		is >> x;
		a = ModInt<mod>(x);
		return is;
	}

	bool operator==(const ModInt& m) const { return n == m.n; }
	bool operator!=(const ModInt& m) const { return n != m.n; }
	ModInt& operator*=(const ModInt& m){ n = n * m.n % mod; return *this; }

	ModInt pow(value_type b) const{
		ModInt ans = 1, m = ModInt(*this);
		while(b){
			if(b & 1) ans *= m;
			m *= m;
			b >>= 1;
		}
		return ans;
	}

	ModInt inv() const { return (*this).pow(mod-2); }
	ModInt& operator+=(const ModInt& m){ n += m.n; n = (n < mod ? n : n - mod); return *this; }
	ModInt& operator-=(const ModInt& m){ n += mod - m.n; n = (n < mod ? n : n - mod); return *this; }
	ModInt& operator/=(const ModInt& m){ *this *= m.inv(); return *this; }
	ModInt operator+(const ModInt& m) const { return ModInt(*this) += m; }
	ModInt operator-(const ModInt& m) const { return ModInt(*this) -= m; }
	ModInt operator*(const ModInt& m) const { return ModInt(*this) *= m; }
	ModInt operator/(const ModInt& m) const { return ModInt(*this) /= m; }
	ModInt& operator++(){ n += 1; return *this; }
	ModInt& operator--(){ n -= 1; return *this; }
	ModInt operator++(int){
		ModInt old(n);
		n += 1;
		return old;
	}
	ModInt operator--(int){
		ModInt old(n);
		n -= 1;
		return old;
	}
	ModInt operator-() const { return ModInt(mod-n); }
};

template<::std::uint_fast64_t mod>
class Combination
{
private:
	::std::vector<ModInt<mod> > _fact;
	::std::vector<ModInt<mod> > _finv;
public:
	Combination(int range){
		_fact.resize(range+1);
		_finv.resize(range+1);
		_fact[0] = _fact[1] = 1;
		_finv[0] = _finv[1] = 1;
		for(int i=2; i<=range; i++){
			_fact[i] = _fact[i-1]*i;
			_finv[i] = _fact[i].inv();
		}
	}

	ModInt<mod> fact(int x){return _fact[x];}
	ModInt<mod> finv(int x){return _finv[x];}
	ModInt<mod> comb(int x, int y){
		return _fact[x]*_finv[y]*_finv[x-y];
	}
	ModInt<mod> homo(int x, int y){
		return comb(x+y-1, y);
	}
};

const ll MOD = 1e9+7;

int main(void)
{
	cin.tie(0);
	ios::sync_with_stdio(false);
	ll n, m; cin>>n>>m;
	if (n < m){
		cout << "0\n";
	}else{
		ModInt<MOD> ans;
		Combination<MOD> com(m);
		rep(i, m){
			ModInt<MOD> p(m-i);
			if (i%2==0){
				ans += com.comb(m, i)*p.pow(n);
			}else{
				ans -= com.comb(m, i)*p.pow(n);
			}
		}
		cout << ans << "\n";
	}
	return 0;
}
0