結果
問題 | No.1227 I hate ThREE |
ユーザー | Mayimg |
提出日時 | 2020-09-12 11:31:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 117 ms / 2,000 ms |
コード長 | 10,141 bytes |
コンパイル時間 | 2,178 ms |
コンパイル使用メモリ | 211,152 KB |
実行使用メモリ | 51,840 KB |
最終ジャッジ日時 | 2024-06-10 14:56:04 |
合計ジャッジ時間 | 4,628 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 6 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 37 ms
19,968 KB |
testcase_09 | AC | 30 ms
18,048 KB |
testcase_10 | AC | 23 ms
14,464 KB |
testcase_11 | AC | 113 ms
49,536 KB |
testcase_12 | AC | 117 ms
51,712 KB |
testcase_13 | AC | 9 ms
8,576 KB |
testcase_14 | AC | 21 ms
17,408 KB |
testcase_15 | AC | 28 ms
21,888 KB |
testcase_16 | AC | 43 ms
32,512 KB |
testcase_17 | AC | 33 ms
25,344 KB |
testcase_18 | AC | 54 ms
38,528 KB |
testcase_19 | AC | 46 ms
33,920 KB |
testcase_20 | AC | 54 ms
40,192 KB |
testcase_21 | AC | 6 ms
6,944 KB |
testcase_22 | AC | 46 ms
34,688 KB |
testcase_23 | AC | 66 ms
50,944 KB |
testcase_24 | AC | 68 ms
51,840 KB |
testcase_25 | AC | 66 ms
51,840 KB |
testcase_26 | AC | 67 ms
49,536 KB |
testcase_27 | AC | 70 ms
51,072 KB |
testcase_28 | AC | 70 ms
51,584 KB |
testcase_29 | AC | 72 ms
51,584 KB |
testcase_30 | AC | 70 ms
50,048 KB |
testcase_31 | AC | 68 ms
50,048 KB |
testcase_32 | AC | 71 ms
51,584 KB |
testcase_33 | AC | 68 ms
49,792 KB |
testcase_34 | AC | 69 ms
50,688 KB |
testcase_35 | AC | 68 ms
49,536 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; template<typename T> class Modular { private: long long value; constexpr static int MOD() { return static_cast<int>(T::value); } public: constexpr Modular() : value() {}; constexpr Modular(const Modular& other) : value(other.value) {} template <typename U> constexpr Modular(const U& x) { value = normalize(x); } template <typename U> static long long normalize(const U& x) { long long v; if (-MOD() <= x && x < MOD()) v = static_cast<long long>(x); else v = static_cast<long long>(x % MOD()); if (v < 0) v += MOD(); return v; } constexpr static long long inverse(long long x) { x = (x % MOD() + MOD()) % MOD(); long long y = MOD(), u = 1, v = 0; while(y) { long long t = x / y; x -= t * y; swap(x, y); u -= t * v; swap(u, v); } return (u % MOD() + MOD()) % MOD(); } static long long mul(const long long& a, const long long& b) { long long res; #ifdef _WIN32 unsigned long long x = a * b; unsigned xh = (unsigned) (x >> 32), xl = (unsigned) x, d, m; asm( "divl %4; \n\t" : "=a" (d), "=d" (m) : "d" (xh), "a" (xl), "r" (MOD()) ); res = m; #else res = a * b % MOD(); #endif return res; } explicit operator long long() const noexcept { return value;} template <typename U> explicit operator U() const noexcept { return static_cast<U>(value); } constexpr Modular& operator=(const Modular& other) & noexcept { value = other.value; return *this; } template <typename U> constexpr Modular& operator=(const U& other) & noexcept { return *this = Modular(other); } constexpr Modular& operator+=(const Modular& other) noexcept { if ((value += other.value) >= MOD()) value -= MOD(); return *this; } template <typename U> constexpr Modular& operator+=(const U& other) noexcept { return *this += Modular(other); } constexpr Modular& operator-=(const Modular& other) noexcept { if ((value -= other.value) < 0) value += MOD(); return *this; } template <typename U> constexpr Modular& operator-=(const U& other) noexcept { return *this -= Modular(other); } constexpr Modular& operator*=(const Modular& other) noexcept { this->value = mul(this->value, other.value); return *this; } template <typename U> constexpr Modular& operator*=(const U& other) noexcept {return *this *= Modular(other); } constexpr Modular& operator/=(const Modular& other) noexcept { return *this *= Modular(inverse(other.value)); } template <typename U> constexpr Modular& operator/=(const U& other) noexcept { return *this *= Modular(inverse(normalize(other))); } constexpr Modular& operator++() noexcept {return *this += 1; } constexpr Modular operator++(int) noexcept { Modular ret(*this); *this += 1; return ret; } constexpr Modular& operator--() noexcept {return *this -= 1; } constexpr Modular operator--(int) noexcept { Modular ret(*this); *this -= 1; return ret; } constexpr Modular operator-() const { return Modular(-value); } friend constexpr bool operator==(const Modular& lhs, const Modular<T>& rhs) noexcept { return lhs.value == rhs.value; } template <typename U> friend constexpr bool operator==(const Modular<T>& lhs, U rhs) noexcept { return lhs == Modular<T>(rhs); } template <typename U> friend constexpr bool operator==(U lhs, const Modular<T>& rhs) noexcept { return Modular<T>(lhs) == rhs; } friend constexpr bool operator!=(const Modular<T>& lhs, const Modular<T>& rhs) noexcept { return !(lhs == rhs); } template <typename U> friend constexpr bool operator!=(const Modular<T>& lhs, U rhs) noexcept { return !(lhs == rhs); } template <typename U> friend constexpr bool operator!=(U lhs, const Modular<T> rhs) noexcept { return !(lhs == rhs); } friend constexpr bool operator<(const Modular<T>& lhs, const Modular<T>& rhs) noexcept { return lhs.value < rhs.value; } template <typename U> friend constexpr bool operator<(const Modular<T> &lhs, U rhs) noexcept { return lhs.value < rhs; } template <typename U> friend constexpr bool operator<(U lhs, const Modular<T> &rhs) noexcept { return lhs < rhs.value; } friend constexpr bool operator>(const Modular<T>& lhs, const Modular<T>& rhs) noexcept { return rhs.value < lhs.value; } template <typename U> friend constexpr bool operator>(const Modular<T> &lhs, U rhs) noexcept { return rhs.value < lhs; } template <typename U> friend constexpr bool operator>(U lhs, const Modular<T> &rhs) noexcept { return rhs < lhs.value; } friend constexpr bool operator<=(const Modular<T>& lhs, const Modular<T>& rhs) noexcept { return !(lhs.value > rhs.value); } template <typename U> friend constexpr bool operator<=(const Modular<T> &lhs, U rhs) noexcept { return !(lhs.value > rhs); } template <typename U> friend constexpr bool operator<=(U lhs, const Modular<T> &rhs) noexcept { return !(lhs < rhs.value); } friend constexpr bool operator>=(const Modular<T>& lhs, const Modular<T>& rhs) noexcept { return !(lhs.value < rhs.value); } template <typename U> friend constexpr bool operator>=(const Modular<T> &lhs, U rhs) noexcept { return !(lhs.value < rhs); } template <typename U> friend constexpr bool operator>=(U lhs, const Modular<T> &rhs) noexcept { return !(lhs < rhs.value); } friend constexpr Modular<T> operator+(const Modular<T>& lhs, const Modular<T>& rhs) noexcept { return Modular<T>(lhs) += rhs; } template <typename U> friend constexpr Modular<T> operator+(const Modular<T>& lhs, U rhs) noexcept { return Modular<T>(lhs) += rhs; } template <typename U> friend constexpr Modular<T> operator+(U lhs, const Modular<T> &rhs) noexcept { return Modular<T>(lhs) += rhs; } friend constexpr Modular<T> operator-(const Modular<T>& lhs, const Modular<T>& rhs) noexcept { return Modular<T>(lhs) -= rhs; } template <typename U> friend constexpr Modular<T> operator-(const Modular<T>& lhs, U rhs) noexcept { return Modular<T>(lhs) -= rhs; } template <typename U> friend constexpr Modular<T> operator-(U lhs, const Modular<T> &rhs) noexcept { return Modular<T>(lhs) -= rhs; } friend constexpr Modular<T> operator*(const Modular<T>& lhs, const Modular<T>& rhs) noexcept { return Modular<T>(lhs) *= rhs; } template <typename U> friend constexpr Modular<T> operator*(const Modular<T>& lhs, U rhs) noexcept { return Modular<T>(lhs) *= rhs; } template <typename U> friend constexpr Modular<T> operator*(U lhs, const Modular<T> &rhs) noexcept { return Modular<T>(lhs) *= rhs; } friend constexpr Modular<T> operator/(const Modular<T>& lhs, const Modular<T>& rhs) noexcept { return Modular<T>(lhs) /= rhs; } template <typename U> friend constexpr Modular<T> operator/(const Modular<T>& lhs, U rhs) noexcept { return Modular<T>(lhs) /= rhs; } template <typename U> friend constexpr Modular<T> operator/(U lhs, const Modular<T> &rhs) noexcept { return Modular<T>(lhs) /= rhs; } friend std::ostream& operator<<(std::ostream& stream, const Modular<T>& number) noexcept { return stream << number.value; } friend std::istream& operator>>(std::istream& stream, Modular<T>& number) { long long in; stream >> in; number.value = Modular<T>::normalize(in); return stream; } constexpr int getmod() const { return MOD(); } }; template<typename T, typename U> Modular<T> power(const Modular<T>& x, const U& y) { assert(y >= 0); Modular<T> k = x, result = 1; U p = y; while (p > 0) { if (p & 1) result *= k; k *= k; p >>= 1; } return result; } template<typename T> class BinaryCoefficients { private: vector<Modular<T>> fact_, inv_, finv_; long long MOD = static_cast<long long>(T::value); public: constexpr BinaryCoefficients(int n = 2020200) : fact_(n, 1), inv_(n, 1), finv_(n, 1) { for (int i = 2; i < n; i++) { fact_[i] = fact_[i - 1] * i; inv_[i] = -inv_[MOD % i] * (MOD / i); finv_[i] = finv_[i - 1] * inv_[i]; } } constexpr Modular<T> comb(int n, int k) const noexcept { if (n < k || n < 0 || k < 0) return 0; return fact_[n] * finv_[k] * finv_[n - k]; } constexpr Modular<T> fact(int n) const noexcept { if (n < 0) return 0; return fact_[n]; } constexpr Modular<T> inv(int n) const noexcept { if (n < 0) return 0; return inv_[n]; } constexpr Modular<T> finv(int n) const noexcept { if (n < 0) return 0; return finv_[n]; } }; constexpr int mod = 1e9 + 7; //constexpr int mod = 998244353; using mint = Modular<std::integral_constant<decay<decltype(mod)>::type, mod>>; using bicoef = BinaryCoefficients<std::integral_constant<decay<decltype(mod)>::type, mod>>; // struct modValue { static int value; }; // int modValue::value; // int& mod = modValue::value; // using mint = Modular<modValue>; // using bicoef = BinaryCoefficients<modValue>; int n, c; vector<vector<int>> g; int cc; vector<vector<mint>> dp; void dfs (int cur, int par) { for (int child : g[cur]) if (child != par) dfs (child, cur); for (int i = 1; i <= cc; i++) { dp[cur][i] = 1; for (int child : g[cur]) if (child != par) { mint sum = 0; int j = i - 3; if (j >= 0) sum += dp[child][j]; j = i + 3; if (j <= cc) sum += dp[child][j]; dp[cur][i] *= sum; } } } signed main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n >> c; g = vector<vector<int>>(n); for (int i = 0; i < n - 1; i++) { int a, b; cin >> a >> b; a--; b--; g[a].push_back(b); g[b].push_back(a); } if (c < 6200) { cc = c; dp = vector<vector<mint>>(n, vector<mint>(cc + 1)); mint ans = 0; dfs (0, -1); for (int i = 0; i <= cc; i++) { ans += dp[0][i]; } // for (int i = 1; i < n; i++) { // for (int j = 0; j <= cc; j++) { // cerr << "i = " << i << " j = " << j << " dp[i][j] = " << dp[i][j] << endl; // } // cerr << endl; // } cout << ans << endl; } else { cc = 6200; dp = vector<vector<mint>>(n, vector<mint>(cc + 1)); mint ans = 0; dfs (0, -1); for (int i = 1; i <= cc / 2; i++) { ans += dp[0][i]; } ans *= 2; ans += power(mint(2), n - 1) * (c - cc); cout << ans << endl; } return 0; }