結果
問題 | No.1044 正直者大学 |
ユーザー | polylogK |
提出日時 | 2020-05-01 23:09:32 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 65 ms / 2,000 ms |
コード長 | 4,115 bytes |
コンパイル時間 | 2,089 ms |
コンパイル使用メモリ | 196,040 KB |
最終ジャッジ日時 | 2025-01-10 05:28:50 |
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 28 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:135:20: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 2 has type ‘modint<1000000007>::u64’ {aka ‘long unsigned int’} [-Wformat=] 135 | printf("%lld\n", ans.value()); | ~~~^ ~~~~~~~~~~~ | | | | long long int modint<1000000007>::u64 {aka long unsigned int} | %ld main.cpp:117:27: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 117 | int n, m, k; scanf("%d%d%d", &n, &m, &k); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std::literals::string_literals; using i64 = std::int_fast64_t; using std::cout; using std::cerr; using std::endl; using std::cin; template<typename T> std::vector<T> make_v(size_t a){return std::vector<T>(a);} template<typename T,typename... Ts> auto make_v(size_t a,Ts... ts){ return std::vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...)); } #ifndef INCLUDED_MODINT_HPP #define INCLUDED_MODINT_HPP #include <iostream> template <std::uint_fast64_t Modulus> class modint { using u32 = std::uint_fast32_t; using u64 = std::uint_fast64_t; using i64 = std::int_fast64_t; inline u64 apply(i64 x) { return (x < 0 ? x + Modulus : x); }; public: u64 a; static constexpr u64 mod = Modulus; constexpr modint(const i64& x = 0) noexcept: a(apply(x % (i64)Modulus)) {} constexpr modint operator+(const modint& rhs) const noexcept { return modint(*this) += rhs; } constexpr modint operator-(const modint& rhs) const noexcept { return modint(*this) -= rhs; } constexpr modint operator*(const modint& rhs) const noexcept { return modint(*this) *= rhs; } constexpr modint operator/(const modint& rhs) const noexcept { return modint(*this) /= rhs; } constexpr modint operator^(const u64& k) const noexcept { return modint(*this) ^= k; } constexpr modint operator^(const modint& k) const noexcept { return modint(*this) ^= k.value(); } constexpr modint operator-() const noexcept { return modint(Modulus - a); } constexpr modint operator++() noexcept { return (*this) = modint(*this) + 1; } constexpr modint operator--() noexcept { return (*this) = modint(*this) - 1; } const bool operator==(const modint& rhs) const noexcept { return a == rhs.a; }; const bool operator!=(const modint& rhs) const noexcept { return a != rhs.a; }; const bool operator<=(const modint& rhs) const noexcept { return a <= rhs.a; }; const bool operator>=(const modint& rhs) const noexcept { return a >= rhs.a; }; const bool operator<(const modint& rhs) const noexcept { return a < rhs.a; }; const bool operator>(const modint& rhs) const noexcept { return a > rhs.a; }; constexpr modint& operator+=(const modint& rhs) noexcept { a += rhs.a; if (a >= Modulus) a -= Modulus; return *this; } constexpr modint& operator-=(const modint& rhs) noexcept { if (a < rhs.a) a += Modulus; a -= rhs.a; return *this; } constexpr modint& operator*=(const modint& rhs) noexcept { a = a * rhs.a % Modulus; return *this; } constexpr modint& operator/=(modint rhs) noexcept { u64 exp = Modulus - 2; while (exp) { if (exp % 2) (*this) *= rhs; rhs *= rhs; exp /= 2; } return *this; } constexpr modint& operator^=(u64 k) noexcept { auto b = modint(1); while(k) { if(k & 1) b = b * (*this); (*this) *= (*this); k >>= 1; } return (*this) = b; } constexpr modint& operator=(const modint& rhs) noexcept { a = rhs.a; return (*this); } constexpr u64& value() noexcept { return a; } constexpr const u64& value() const noexcept { return a; } explicit operator bool() const { return a; } explicit operator u32() const { return a; } const modint inverse() const { return modint(1) / *this; } const modint pow(i64 k) const { return modint(*this) ^ k; } friend std::ostream& operator<<(std::ostream& os, const modint& p) { return os << p.a; } friend std::istream& operator>>(std::istream& is, modint& p) { u64 t; is >> t; p = modint(t); return is; } }; #endif using mint = modint<1000000007>; int main() { int n, m, k; scanf("%d%d%d", &n, &m, &k); std::vector<mint> fact(n + m + 1, 1); for(int i = 1; i < fact.size(); i++) fact[i] = fact[i - 1] * i; auto comb = [&](int n, int r) { return fact[n] / fact[n - r] / fact[r]; }; std::vector<mint> a(n + 1), b(m + 1); for(int i = 1; i < a.size(); i++) a[i] = comb(n - 1, i - 1); for(int i = 1; i < b.size(); i++) b[i] = comb(m - 1, i - 1); mint ans = 0; for(int i = 0; i <= std::min(n, m); i++) { int K = (n - i) + (m - i); if(K < k) continue; ans += a[i] * b[i] * fact[n] * fact[m] / mint(i);; } printf("%lld\n", ans.value()); return 0; }