結果
| 問題 |
No.1124 Earthquake Safety
|
| コンテスト | |
| ユーザー |
KoD
|
| 提出日時 | 2020-07-22 23:41:34 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 540 ms / 3,000 ms |
| コード長 | 6,541 bytes |
| コンパイル時間 | 792 ms |
| コンパイル使用メモリ | 82,820 KB |
| 最終ジャッジ日時 | 2025-01-12 03:58:38 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 58 |
ソースコード
#line 1 "main.cpp"
/**
* @title Template
*/
#include <iostream>
#include <algorithm>
#include <utility>
#include <numeric>
#include <vector>
#include <array>
template <class T, class U>
inline bool chmin(T &lhs, const U &rhs) {
if (lhs > rhs) { lhs = rhs; return true; }
return false;
}
template <class T, class U>
inline bool chmax(T &lhs, const U &rhs) {
if (lhs < rhs) { lhs = rhs; return true; }
return false;
}
struct range {
using itr = int64_t;
struct iterator {
itr i;
constexpr iterator(itr i_) noexcept : i(i_) { }
constexpr void operator ++ () noexcept { ++i; }
constexpr itr operator * () const noexcept { return i; }
constexpr bool operator != (iterator x) const noexcept { return i != x.i; }
};
const iterator l, r;
constexpr range(itr l_, itr r_) noexcept : l(l_), r(std::max(l_, r_)) { }
constexpr iterator begin() const noexcept { return l; }
constexpr iterator end() const noexcept { return r; }
};
struct revrange {
using itr = int64_t;
struct iterator {
itr i;
constexpr iterator(itr i_) noexcept : i(i_) { }
constexpr void operator ++ () noexcept { --i; }
constexpr itr operator * () const noexcept { return i; }
constexpr bool operator != (iterator x) const noexcept { return i != x.i; }
};
const iterator l, r;
constexpr revrange(itr l_, itr r_) noexcept : l(l_ - 1), r(std::max(l_, r_) - 1) { }
constexpr iterator begin() const noexcept { return r; }
constexpr iterator end() const noexcept { return l; }
};
#line 2 "/Users/kodamankod/Desktop/Programming/Library/algebraic/modular.cpp"
#include <cstdint>
#line 5 "/Users/kodamankod/Desktop/Programming/Library/algebraic/modular.cpp"
template <uint32_t Modulus>
class modular {
public:
using value_type = uint32_t;
using max_type = uint64_t;
static constexpr value_type mod = Modulus;
static constexpr value_type get_mod() noexcept { return mod; }
static_assert(mod >= 2, "invalid mod :: smaller than 2");
static_assert(mod < (value_type(1) << 31), "invalid mod :: over 2^31");
template <class T>
static constexpr value_type normalize(T value_) noexcept {
if (value_ < 0) {
value_ = -value_;
value_ %= mod;
if (value_ == 0) return 0;
return mod - value_;
}
return value_ % mod;
}
private:
value_type value;
public:
constexpr modular() noexcept : value(0) { }
template <class T>
explicit constexpr modular(T value_) noexcept : value(normalize(value_)) { }
template <class T>
explicit constexpr operator T() const noexcept { return static_cast<T>(value); }
constexpr value_type get() const noexcept { return value; }
constexpr modular operator - () const noexcept { return modular(mod - value); }
constexpr modular operator ~ () const noexcept { return inverse(); }
constexpr value_type &extract() noexcept { return value; }
constexpr modular inverse() const noexcept { return power(mod - 2); }
constexpr modular power(max_type exp) const noexcept {
modular res(1), mult(*this);
while (exp > 0) {
if (exp & 1) res *= mult;
mult *= mult;
exp >>= 1;
}
return res;
}
constexpr modular operator + (const modular &rhs) const noexcept { return modular(*this) += rhs; }
constexpr modular& operator += (const modular &rhs) noexcept {
if ((value += rhs.value) >= mod) value -= mod;
return *this;
}
constexpr modular operator - (const modular &rhs) const noexcept { return modular(*this) -= rhs; }
constexpr modular& operator -= (const modular &rhs) noexcept {
if ((value += mod - rhs.value) >= mod) value -= mod;
return *this;
}
constexpr modular operator * (const modular &rhs) const noexcept { return modular(*this) *= rhs; }
constexpr modular& operator *= (const modular &rhs) noexcept {
value = (max_type) value * rhs.value % mod;
return *this;
}
constexpr modular operator / (const modular &rhs) const noexcept { return modular(*this) /= rhs; }
constexpr modular& operator /= (const modular &rhs) noexcept { return (*this) *= rhs.inverse(); }
constexpr bool zero() const noexcept { return value == 0; }
constexpr bool operator == (const modular &rhs) const noexcept { return value == rhs.value; }
constexpr bool operator != (const modular &rhs) const noexcept { return value != rhs.value; }
friend std::ostream& operator << (std::ostream &stream, const modular &rhs) {
return stream << rhs.value;
}
};
/**
* @title Modint
*/
#line 2 "/Users/kodamankod/Desktop/Programming/Library/other/fix_point.cpp"
#line 4 "/Users/kodamankod/Desktop/Programming/Library/other/fix_point.cpp"
template <class Func>
struct fix_point: private Func {
explicit constexpr fix_point(Func &&func): Func(std::forward<Func>(func)) { }
template <class... Args>
constexpr decltype(auto) operator () (Args &&... args) const {
return Func::operator()(*this, std::forward<Args>(args)...);
}
};
template <class Func>
constexpr decltype(auto) make_fix_point(Func &&func) {
return fix_point<Func>(std::forward<Func>(func));
}
/**
* @title Lambda Recursion
*/
#line 57 "main.cpp"
using i32 = int32_t;
using i64 = int64_t;
using u32 = uint32_t;
using u64 = uint64_t;
constexpr i32 inf32 = (i32(1) << 30) - 1;
constexpr i64 inf64 = (i64(1) << 62) - 1;
using m32 = modular<1000000007>;
int main() {
i32 N;
std::cin >> N;
std::vector<std::vector<i32>> graph(N);
for (auto i: range(1, N)) {
i32 a, b;
std::cin >> a >> b;
--a; --b;
graph[a].push_back(b);
graph[b].push_back(a);
}
std::vector<i32> size(N);
std::vector<std::array<m32, 4>> dp(N);
for (auto &arr: dp) {
arr.fill(m32());
}
m32 ans;
fix_point([&](auto dfs, i32 u, i32 p) -> void {
dp[u][0] = m32(1);
dp[u][1] = m32(1);
size[u] = 1;
for (auto v: graph[u]) {
if (v == p) continue;
dfs(v, u);
std::array<m32, 4> next{};
for (auto i: range(0, 4)) {
next[i] = dp[u][i] * m32(2).power(size[v] - 1);
}
for (auto i: range(0, 4)) {
for (auto j: range(0, 4)) {
if (i + j < 4) {
next[i + j] += dp[u][i] * dp[v][j];
}
}
}
dp[u] = std::move(next);
size[u] += size[v];
}
// for (auto i: range(0, 4)) {
// std::cout << dp[u][i] << ' ';
// }
// std::cout << '\n';
m32 tmp = dp[u][1] + dp[u][2] * m32(6) + dp[u][3] * m32(6);
if (p == -1) ans += tmp;
else ans += tmp * m32(2).power((N - 1) - size[u]);
})(0, -1);
std::cout << ans << '\n';
return 0;
}
KoD