結果
問題 | No.1784 Not a star yet... |
ユーザー | PCTprobability |
提出日時 | 2021-11-17 23:13:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 6,932 bytes |
コンパイル時間 | 5,300 ms |
コンパイル使用メモリ | 283,680 KB |
実行使用メモリ | 657,408 KB |
最終ジャッジ日時 | 2024-07-21 12:13:22 |
合計ジャッジ時間 | 10,066 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,880 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 156 ms
6,144 KB |
testcase_15 | AC | 739 ms
10,496 KB |
testcase_16 | MLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
ソースコード
//O(N^6) 解 ただし定数倍に /2^6 がついている #include <bits/stdc++.h> using namespace std; #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif using ll = long long; using ld = long double; using ull = unsigned long long; #define endl "\n" typedef pair<int, int> Pii; #define REP(i, n) for (int i = 0; i < (n); ++i) #define REP3(i, m, n) for (int i = (m); (i) < int(n); ++ (i)) #define FOR(i,a,b) for(ll i=a;i<=(ll)(b);i++) #define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define ALL(x) begin(x), end(x) #define PB push_back #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(s) (s).begin(),(s).end() #define drep2(i, m, n) for (int i = (m)-1; i >= (n); --i) #define drep(i, n) drep2(i, n, 0) #define rever(vec) reverse(vec.begin(), vec.end()) #define sor(vec) sort(vec.begin(), vec.end()) #define fi first #define se second #define pb push_back #define P pair<ll,ll> #define PQminll priority_queue<ll, vector<ll>, greater<ll>> #define PQmaxll priority_queue<ll,vector<ll>,less<ll>> #define PQminP priority_queue<P, vector<P>, greater<P>> #define PQmaxP priority_queue<P,vector<P>,less<P>> #define NP next_permutation typedef string::const_iterator State; class ParseError {}; //const ll mod = 1000000009; //const ll mod = 998244353; const ll mod = 1000000007; const ll inf = 4100000000000000000ll; const ld eps = ld(0.00000000000001); //static const long double pi = 3.141592653589793; template<class T>void vcin(vector<T> &n){for(int i=0;i<int(n.size());i++) cin>>n[i];} template<class T,class K>void vcin(vector<T> &n,vector<K> &m){for(int i=0;i<int(n.size());i++) cin>>n[i]>>m[i];} template<class T>void vcout(vector<T> &n){for(int i=0;i<int(n.size());i++){cout<<n[i]<<" ";}cout<<endl;} template<class T>void vcin(vector<vector<T>> &n){for(int i=0;i<int(n.size());i++){for(int j=0;j<int(n[i].size());j++){cin>>n[i][j];}}} template<class T>void vcout(vector<vector<T>> &n){for(int i=0;i<int(n.size());i++){for(int j=0;j<int(n[i].size());j++){cout<<n[i][j]<<" ";}cout<<endl;}cout<<endl;} void yes(bool a){cout<<(a?"yes":"no")<<endl;} void YES(bool a){cout<<(a?"YES":"NO")<<endl;} void Yes(bool a){cout<<(a?"Yes":"No")<<endl;} void possible(bool a){ cout<<(a?"possible":"impossible")<<endl; } void Possible(bool a){ cout<<(a?"Possible":"Impossible")<<endl; } void POSSIBLE(bool a){ cout<<(a?"POSSIBLE":"IMPOSSIBLE")<<endl; } template<class T>void print(T a){cout<<a<<endl;} template<class T>auto min(const T& a){ return *min_element(all(a)); } template<class T>auto max(const T& a){ return *max_element(all(a)); } template<class T,class F>void print(pair<T,F> a){cout<<a.fi<<" "<<a.se<<endl;} template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0;} template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0;} template<class T> void ifmin(T t,T u){if(t>u){cout<<-1<<endl;}else{cout<<t<<endl;}} template<class T> void ifmax(T t,T u){if(t>u){cout<<-1<<endl;}else{cout<<t<<endl;}} ll fastgcd(ll u,ll v){ll shl=0;while(u&&v&&u!=v){bool eu=!(u&1);bool ev=!(v&1);if(eu&&ev){++shl;u>>=1;v>>=1;}else if(eu&&!ev){u>>=1;}else if(!eu&&ev){v>>=1;}else if(u>=v){u=(u-v)>>1;}else{ll tmp=u;u=(v-u)>>1;v=tmp;}}return !u?v<<shl:u<<shl;} ll modPow(ll a, ll n, ll mod) { if(mod==1) return 0;ll ret = 1; ll p = a % mod; while (n) { if (n & 1) ret = ret * p % mod; p = p * p % mod; n >>= 1; } return ret; } vector<ll> divisor(ll x){ vector<ll> ans; for(ll i = 1; i * i <= x; i++){ if(x % i == 0) {ans.push_back(i); if(i*i!=x){ ans.push_back(x / ans[i]);}}}sor(ans); return ans; } ll pop(ll x){return __builtin_popcountll(x);} ll poplong(ll x){ll y=-1;while(x){x/=2;y++;}return y;} P hyou(P a){ll x=fastgcd(abs(a.fi),abs(a.se));a.fi/=x;a.se/=x;if(a.se<0){a.fi*=-1;a.se*=-1;}return a;} P Pplus(P a,P b){ return hyou({a.fi*b.se+b.fi*a.se,a.se*b.se});} P Ptimes(P a,ll b){ return hyou({a.fi*b,a.se});} P Ptimes(P a,P b){ return hyou({a.fi*b.fi,a.se*b.se});} P Pminus(P a,P b){ return hyou({a.fi*b.se-b.fi*a.se,a.se*b.se});} P Pgyaku(P a){ return hyou({a.se,a.fi});} void cincout(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); cout<< fixed << setprecision(10); } using mint = modint998244353; ll U,V; void Set(ll u,ll v){ U=u; V=v; } ll ind(ll i,ll j){ return i*(V+1)+j; } template<class T> int solve_linear_equations(vector<vector<T>> a,vector<T> b,vector<T> &res){ ll n=a.size(),m=a[0].size(); ll x=0; for(int i=0;i<min(n,m);i++){ ll ind=-1; for(int j=x;j<n;j++){ if(a[j][i].val()) ind=j; } if(ind==-1) continue; swap(a[x],a[ind]); swap(b[x],b[ind]); for(int j=0;j<n;j++){ if(x==j) continue; if(a[j][i].val()){ mint y=a[j][i]/a[x][i]; for(int k=0;k<m;k++) a[j][k]-=a[x][k]*y; b[j]-=b[x]*y; } } mint z=a[x][i]; for(int j=0;j<m;j++) a[x][j]/=z; b[x]/=z; x++; } for(int i=x;i<n;i++) if(b[i].val()) return -1; vector<ll> r; for(int i=0;i<n;i++){ ll ind=-1; for(int j=0;j<m;j++){ if(a[i][j].val()){ ind=j; break; } } if(ind!=-1) r.pb(ind); } res.resize(m); for(int i=m-1;i>=0;i--){ ll ind=-1; for(int j=0;j<r.size();j++){ if(r[j]==i){ ind=j; break; } } if(ind==-1) continue; mint now=b[ind]; for(int j=i+1;j<m;j++) now-=a[ind][j]*res[j]; res[i]=now; } return x; } int main() { cincout(); ll n; cin>>n; vector<ll> a(n-1),b(n-1),l(n-1); map<ll,ll> m; for(int i=0;i<n-1;i++){ cin>>a[i]>>b[i]>>l[i]; a[i]--; b[i]--; m[l[i]]++; } ll x=-1,y=-1; for(auto e:m){ if(x==-1) x=e.fi; else y=e.fi; } if(y==-1) y=x; vector<ll> s(n),t(n); ll u=0,v=0; for(int i=0;i<n-1;i++){ if(l[i]==x){ u++; s[a[i]]++; s[b[i]]++; } else{ v++; t[a[i]]++; t[b[i]]++; } } Set(u,v); mint k=u*x+v*y; mint p=n*(n-1)/2-(n-2); vector<vector<mint>> g((u+1)*(v+1)-1,vector<mint>((u+1)*(v+1))); vector<mint> f((u+1)*(v+1)-1); for(int i=0;i<=u;i++){ for(int j=0;j<=v;j++){ if(i==u&&j==v) continue; f[ind(i,j)]=mint(-1)/mint(n); f[ind(i,j)]*=k*p; mint q=n-i-j; g[ind(i,j)][ind(i,j)]-=1; g[ind(i,j)][ind(i,j)]*=k*p; g[ind(i,j)][ind(i,j)]+=q*x*i; if(i) g[ind(i,j)][ind(i-1,j)]+=(p-q)*x*i; g[ind(i,j)][ind(i,j)]+=q*y*j; if(j) g[ind(i,j)][ind(i,j-1)]+=(p-q)*y*j; if(i!=u) g[ind(i,j)][ind(i+1,j)]+=(q-1)*x*(u-i); g[ind(i,j)][ind(i,j)]+=(p-q+1)*x*(u-i); if(j!=v) g[ind(i,j)][ind(i,j+1)]+=(q-1)*y*(v-j); g[ind(i,j)][ind(i,j)]+=(p-q+1)*y*(v-j); } } vector<mint> res; int check=solve_linear_equations(g,f,res); assert(check!=-1); mint ans=0; for(int i=0;i<n;i++){ ans+=res[ind(s[i],t[i])]; } ans-=res[ind(u,v)]; ans-=res[ind(0,1)]*v; ans-=res[ind(1,0)]*u; cout<<ans.val()<<endl; }