結果

問題 No.1124 Earthquake Safety
ユーザー sigma425sigma425
提出日時 2020-07-23 00:55:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 304 ms / 3,000 ms
コード長 4,058 bytes
コンパイル時間 3,433 ms
コンパイル使用メモリ 207,588 KB
実行使用メモリ 99,136 KB
最終ジャッジ日時 2023-09-05 07:27:53
合計ジャッジ時間 16,248 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 7 ms
4,376 KB
testcase_08 AC 76 ms
8,620 KB
testcase_09 AC 272 ms
19,956 KB
testcase_10 AC 223 ms
99,136 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 304 ms
19,740 KB
testcase_15 AC 300 ms
19,816 KB
testcase_16 AC 300 ms
19,736 KB
testcase_17 AC 298 ms
19,744 KB
testcase_18 AC 290 ms
19,752 KB
testcase_19 AC 295 ms
19,728 KB
testcase_20 AC 297 ms
19,964 KB
testcase_21 AC 288 ms
19,868 KB
testcase_22 AC 291 ms
19,672 KB
testcase_23 AC 270 ms
19,764 KB
testcase_24 AC 267 ms
20,020 KB
testcase_25 AC 254 ms
19,920 KB
testcase_26 AC 260 ms
20,000 KB
testcase_27 AC 250 ms
24,160 KB
testcase_28 AC 254 ms
24,392 KB
testcase_29 AC 272 ms
38,416 KB
testcase_30 AC 268 ms
38,512 KB
testcase_31 AC 285 ms
68,500 KB
testcase_32 AC 292 ms
63,108 KB
testcase_33 AC 276 ms
60,392 KB
testcase_34 AC 276 ms
67,296 KB
testcase_35 AC 258 ms
19,532 KB
testcase_36 AC 247 ms
19,464 KB
testcase_37 AC 243 ms
20,444 KB
testcase_38 AC 244 ms
20,264 KB
testcase_39 AC 234 ms
20,004 KB
testcase_40 AC 239 ms
21,008 KB
testcase_41 AC 232 ms
20,272 KB
testcase_42 AC 230 ms
20,872 KB
testcase_43 AC 238 ms
21,052 KB
testcase_44 AC 232 ms
21,064 KB
testcase_45 AC 229 ms
20,796 KB
testcase_46 AC 225 ms
21,120 KB
testcase_47 AC 228 ms
20,600 KB
testcase_48 AC 221 ms
20,676 KB
testcase_49 AC 227 ms
20,744 KB
testcase_50 AC 2 ms
4,380 KB
testcase_51 AC 2 ms
4,380 KB
testcase_52 AC 1 ms
4,376 KB
testcase_53 AC 2 ms
4,376 KB
testcase_54 AC 1 ms
4,380 KB
testcase_55 AC 2 ms
4,376 KB
testcase_56 AC 2 ms
4,376 KB
testcase_57 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using uint = unsigned int;
#define rep(i,n) for(int i=0;i<int(n);i++)
#define rep1(i,n) for(int i=1;i<=int(n);i++)
#define per(i,n) for(int i=int(n)-1;i>=0;i--)
#define per1(i,n) for(int i=int(n);i>0;i--)
#define all(c) c.begin(),c.end()
#define si(x) int(x.size())
#define pb emplace_back
#define fs first
#define sc second
template<class T> using V = vector<T>;
template<class T> using VV = vector<vector<T>>;
template<class T,class U> void chmax(T& x, U y){if(x<y) x=y;}
template<class T,class U> void chmin(T& x, U y){if(y<x) x=y;}
template<class T> void mkuni(V<T>& v){sort(all(v));v.erase(unique(all(v)),v.end());}
template<class S,class T> ostream& operator<<(ostream& o,const pair<S,T> &p){
	return o<<"("<<p.fs<<","<<p.sc<<")";
}
template<class T> ostream& operator<<(ostream& o,const vector<T> &vc){
	o<<"{";
	for(const T& v:vc) o<<v<<",";
	o<<"}";
	return o;
}
constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n-1); }

#ifdef LOCAL
#define show(x) cerr << "LINE" << __LINE__ << " : " << #x << " = " << (x) << endl
void dmpr(ostream& os){os<<endl;}
template<class T,class... Args>
void dmpr(ostream&os,const T&t,const Args&... args){
	os<<t<<" ~ ";
	dmpr(os,args...);
}
#define shows(...) cerr << "LINE" << __LINE__ << " : ";dmpr(cerr,##__VA_ARGS__)
#define dump(x) cerr << "LINE" << __LINE__ << " : " << #x << " = {";  \
	for(auto v: x) cerr << v << ","; cerr << "}" << endl;
#else
#define show(x) void(0)
#define dump(x) void(0)
#define shows(...) void(0)
#endif
template<unsigned int mod_>
struct ModInt{
	using uint = unsigned int;
	using ll = long long;
	using ull = unsigned long long;

	constexpr static uint mod = mod_;

	uint v;
	ModInt():v(0){}
	ModInt(ll _v):v(normS(_v%mod+mod)){}
	explicit operator bool() const {return v!=0;}
	static uint normS(const uint &x){return (x<mod)?x:x-mod;}		// [0 , 2*mod-1] -> [0 , mod-1]
	static ModInt make(const uint &x){ModInt m; m.v=x; return m;}
	ModInt operator+(const ModInt& b) const { return make(normS(v+b.v));}
	ModInt operator-(const ModInt& b) const { return make(normS(v+mod-b.v));}
	ModInt operator-() const { return make(normS(mod-v)); }
	ModInt operator*(const ModInt& b) const { return make((ull)v*b.v%mod);}
	ModInt operator/(const ModInt& b) const { return *this*b.inv();}
	ModInt& operator+=(const ModInt& b){ return *this=*this+b;}
	ModInt& operator-=(const ModInt& b){ return *this=*this-b;}
	ModInt& operator*=(const ModInt& b){ return *this=*this*b;}
	ModInt& operator/=(const ModInt& b){ return *this=*this/b;}
	ModInt& operator++(int){ return *this=*this+1;}
	ModInt& operator--(int){ return *this=*this-1;}
	ll extgcd(ll a,ll b,ll &x,ll &y) const{
		ll p[]={a,1,0},q[]={b,0,1};
		while(*q){
			ll t=*p/ *q;
			rep(i,3) swap(p[i]-=t*q[i],q[i]);
		}
		if(p[0]<0) rep(i,3) p[i]=-p[i];
		x=p[1],y=p[2];
		return p[0];
	}
	ModInt inv() const {
		ll x,y;
		extgcd(v,mod,x,y);
		return make(normS(x+mod));
	}
	ModInt pow(ll p) const {
		if(p<0) return inv().pow(-p);
		ModInt a = 1;
		ModInt x = *this;
		while(p){
			if(p&1) a *= x;
			x *= x;
			p >>= 1;
		}
		return a;
	}
	bool operator==(const ModInt& b) const { return v==b.v;}
	bool operator!=(const ModInt& b) const { return v!=b.v;}
	friend istream& operator>>(istream &o,ModInt& x){
		ll tmp;
		o>>tmp;
		x=ModInt(tmp);
		return o;
	}
	friend ostream& operator<<(ostream &o,const ModInt& x){ return o<<x.v;}
};
using mint = ModInt<1000000007>;

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);		//DON'T USE scanf/printf/puts !!
	cout << fixed << setprecision(20);

	int N; cin >> N;
	VV<int> G(N);
	rep(i,N-1){
		int x,y; cin >> x >> y; x--,y--;
		G[x].pb(y);G[y].pb(x);
	}
	function<V<mint>(int,int)> dfs = [&](int v,int p){
		V<mint> a(8); a[0] = 1;
		for(int u: G[v]) if(u != p){
			V<mint> b = dfs(u,v);
			b[0] *= 2, b[7] *= 2;
			V<mint> na(8);
			rep(i,8) rep(j,8) if((i&j)==0) na[i|j] += a[i] * b[j];
			a = na;
		}
		V<mint> na(8);
		rep(i,8) rep(j,8) if((i&j) == j) na[i] += a[j];
		return na;
	};
	cout << dfs(0,-1)[7] << endl;
}
0