//Korzystam z struktury BigNum z książki Stańczyka "Algorytmika Praktyczna" #include <iostream> #include <vector> #include <string> #include <cstdio> #include <algorithm> using namespace std; typedef vector<int> VI; typedef long long LL; #define FOR(x,b,e) for(int x=b; x<= (e); ++x) #define FORD(x,b,e) for(int x = b; x >= (e); --x) #define REP(x,n) for(int x = 0; x < (n); ++x) struct BigNum { #define REDUCE() while( len > 1 && !cyf[len - 1]) len--; static const int BASE = 1000000000, BD =9; int len, al; LL *cyf; BigNum(int v = 0, int l = 2) : len(1), al(l), cyf(new LL[l]) { REP(x, al) cyf[x] = 0; if((cyf[0] = v) >= BASE) przen(1); } BigNum(const BigNum &a) : len(a.len), al(len), cyf(new LL[al]) { REP(x, al) cyf[x] = a.cyf[x]; } ~BigNum() { delete cyf; } void Res(int l) { if(l > al) { LL *n = new LL[l = max(l, 2 * al)]; REP(x, l) n[x] = x >= al ? 0 : cyf[x]; delete cyf; cyf = n; al = l; } } void przen(int p) { int x =0; for(; x < p || cyf[x] < 0 || cyf[x] >= BASE; x++) { Res(x+2); if(cyf[x] < 0) { LL i = (-cyf[x] - 1) / BASE + 1; cyf[x] += i * BASE; cyf[x + 1] -= i; } else if(cyf[x] >= BASE) { LL i = cyf[x] / BASE; cyf[x] -= i * BASE; cyf[x + 1] += i; } } len = max(len, x + 1); REDUCE(); } #define OPER1(op) bool operator op (const BigNum &a) const OPER1(<) { if(len != a.len) return len < a.len; int x = len - 1; while(x && a.cyf[x] == cyf[x]) x--; return cyf[x] < a.cyf[x]; } OPER1(>) { return a < *this; } #define OPER2(op) BigNum& operator op (const BigNum &a) OPER2(+=) { Res(a.len); REP(x, a.len) cyf[x] += a.cyf[x]; przen(a.len); return *this; } OPER2(-=) { REP(x, a.len) cyf[x] -= a.cyf[x]; przen(a.len); return *this; } OPER2(*=) { BigNum c(0, len + a.len); REP(x, a.len) { REP(y, len) c.cyf[y + x] += cyf[y] * a.cyf[x]; c.przen(len + x); } *this = c; return *this; } OPER2(/=) { int n = max(len - a.len + 1, 1); BigNum d(0, n), prod; FORD(i, n - 1, 0) { int l = 0, r = BASE - 1; while(l < r) { int m = (l + r + 1) / 2; if(*this < prod + (a * m << i)) r = m - 1; else l = m; } prod += a * l << i; d.cyf[i] = l; if(l) d.len = max(d.len, i+ 1); } *this = d; return *this; } OPER2(%=) { BigNum v = *this; v /= a; v *= a; *this -= v; return *this; } OPER2(=) { Res(a.len); FORD(x, len - 1, a.len) cyf[x] = 0; REP(x, a.len) cyf[x] = a.cyf[x]; len = a.len; return *this; } void write() const { printf("%d", int (cyf[len - 1])); FORD(x, len - 2, 0) printf("%0*d", BD, int (cyf[x])); } BigNum & operator>>=(int n) { if(n >= len) n = len; REP(x, len - n) cyf[x] = cyf[x + n]; FOR(x, len - n, n) cyf[x] = 0; len -= n; if(len == 0) len = 1; return *this; } BigNum & operator<<=(int n) { if(cyf[0] == 0 && len == 1) return *this; Res(len + n); FORD(x, len - 1, 0) cyf[x + n] = cyf[x]; REP(x, n) cyf[x] = 0; len += n; return *this; } #define OPER3(op) BigNum operator op(const BigNum &a) \ const {BigNum w = *this; w op ## = a; return w; } #define OPER4(op) BigNum operator op(int a) \ {BigNum w = *this; w op ## = a; return w; } OPER3(+); OPER3(-); OPER3(*); OPER3(/); OPER3(%); OPER4(<<); OPER4(>>); }; BigNum NWD(BigNum a, BigNum b) { while(b > 0) swap(a %= b,b); return a; } int main() { int N; cin>>N; vector< vector<int> > V; for(int i=0; i<N; ++i) { int r; vector<int> W; cin>>r; for(int j=0; j<r; ++j) { int a; cin>>a; W.push_back(a); } V.push_back(W); } BigNum dp[100]; for(int i=0; i<100; ++i) dp[i] = 0; dp[0] = 1; for(int i=0; i<N; ++i) { BigNum S; int s = V[i].size(); S = V[i].size(); if(s > 0) { BigNum M; M = S / NWD(dp[i],S); for(int j=0; j<N; ++j) dp[j] *= M; for(int j=0; j<s; ++j) { dp[V[i][j]-1] += dp[i] / S; } } } dp[0].write(); cout<<endl; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | //Korzystam z struktury BigNum z książki Stańczyka "Algorytmika Praktyczna" #include <iostream> #include <vector> #include <string> #include <cstdio> #include <algorithm> using namespace std; typedef vector<int> VI; typedef long long LL; #define FOR(x,b,e) for(int x=b; x<= (e); ++x) #define FORD(x,b,e) for(int x = b; x >= (e); --x) #define REP(x,n) for(int x = 0; x < (n); ++x) struct BigNum { #define REDUCE() while( len > 1 && !cyf[len - 1]) len--; static const int BASE = 1000000000, BD =9; int len, al; LL *cyf; BigNum(int v = 0, int l = 2) : len(1), al(l), cyf(new LL[l]) { REP(x, al) cyf[x] = 0; if((cyf[0] = v) >= BASE) przen(1); } BigNum(const BigNum &a) : len(a.len), al(len), cyf(new LL[al]) { REP(x, al) cyf[x] = a.cyf[x]; } ~BigNum() { delete cyf; } void Res(int l) { if(l > al) { LL *n = new LL[l = max(l, 2 * al)]; REP(x, l) n[x] = x >= al ? 0 : cyf[x]; delete cyf; cyf = n; al = l; } } void przen(int p) { int x =0; for(; x < p || cyf[x] < 0 || cyf[x] >= BASE; x++) { Res(x+2); if(cyf[x] < 0) { LL i = (-cyf[x] - 1) / BASE + 1; cyf[x] += i * BASE; cyf[x + 1] -= i; } else if(cyf[x] >= BASE) { LL i = cyf[x] / BASE; cyf[x] -= i * BASE; cyf[x + 1] += i; } } len = max(len, x + 1); REDUCE(); } #define OPER1(op) bool operator op (const BigNum &a) const OPER1(<) { if(len != a.len) return len < a.len; int x = len - 1; while(x && a.cyf[x] == cyf[x]) x--; return cyf[x] < a.cyf[x]; } OPER1(>) { return a < *this; } #define OPER2(op) BigNum& operator op (const BigNum &a) OPER2(+=) { Res(a.len); REP(x, a.len) cyf[x] += a.cyf[x]; przen(a.len); return *this; } OPER2(-=) { REP(x, a.len) cyf[x] -= a.cyf[x]; przen(a.len); return *this; } OPER2(*=) { BigNum c(0, len + a.len); REP(x, a.len) { REP(y, len) c.cyf[y + x] += cyf[y] * a.cyf[x]; c.przen(len + x); } *this = c; return *this; } OPER2(/=) { int n = max(len - a.len + 1, 1); BigNum d(0, n), prod; FORD(i, n - 1, 0) { int l = 0, r = BASE - 1; while(l < r) { int m = (l + r + 1) / 2; if(*this < prod + (a * m << i)) r = m - 1; else l = m; } prod += a * l << i; d.cyf[i] = l; if(l) d.len = max(d.len, i+ 1); } *this = d; return *this; } OPER2(%=) { BigNum v = *this; v /= a; v *= a; *this -= v; return *this; } OPER2(=) { Res(a.len); FORD(x, len - 1, a.len) cyf[x] = 0; REP(x, a.len) cyf[x] = a.cyf[x]; len = a.len; return *this; } void write() const { printf("%d", int (cyf[len - 1])); FORD(x, len - 2, 0) printf("%0*d", BD, int (cyf[x])); } BigNum & operator>>=(int n) { if(n >= len) n = len; REP(x, len - n) cyf[x] = cyf[x + n]; FOR(x, len - n, n) cyf[x] = 0; len -= n; if(len == 0) len = 1; return *this; } BigNum & operator<<=(int n) { if(cyf[0] == 0 && len == 1) return *this; Res(len + n); FORD(x, len - 1, 0) cyf[x + n] = cyf[x]; REP(x, n) cyf[x] = 0; len += n; return *this; } #define OPER3(op) BigNum operator op(const BigNum &a) \ const {BigNum w = *this; w op ## = a; return w; } #define OPER4(op) BigNum operator op(int a) \ {BigNum w = *this; w op ## = a; return w; } OPER3(+); OPER3(-); OPER3(*); OPER3(/); OPER3(%); OPER4(<<); OPER4(>>); }; BigNum NWD(BigNum a, BigNum b) { while(b > 0) swap(a %= b,b); return a; } int main() { int N; cin>>N; vector< vector<int> > V; for(int i=0; i<N; ++i) { int r; vector<int> W; cin>>r; for(int j=0; j<r; ++j) { int a; cin>>a; W.push_back(a); } V.push_back(W); } BigNum dp[100]; for(int i=0; i<100; ++i) dp[i] = 0; dp[0] = 1; for(int i=0; i<N; ++i) { BigNum S; int s = V[i].size(); S = V[i].size(); if(s > 0) { BigNum M; M = S / NWD(dp[i],S); for(int j=0; j<N; ++j) dp[j] *= M; for(int j=0; j<s; ++j) { dp[V[i][j]-1] += dp[i] / S; } } } dp[0].write(); cout<<endl; return 0; } |