結果
問題 | No.439 チワワのなる木 |
ユーザー | sntea |
提出日時 | 2016-10-28 23:59:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 5,704 bytes |
コンパイル時間 | 2,789 ms |
コンパイル使用メモリ | 199,808 KB |
実行使用メモリ | 21,444 KB |
最終ジャッジ日時 | 2024-11-24 06:44:27 |
合計ジャッジ時間 | 3,815 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 86 ms
20,704 KB |
testcase_25 | AC | 56 ms
13,652 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#ifdef LOCAL111 #define _GLIBCXX_DEBUG #else #define NDEBUG #endif #include <bits/stdc++.h> const int INF = 1e9; using namespace std; template<typename T, typename U> ostream& operator<< (ostream& os, const pair<T,U>& p) { cout << '(' << p.first << ' ' << p.second << ')'; return os; } #define endl '\n' #define ALL(a) (a).begin(),(a).end() #define SZ(a) int((a).size()) #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--) #define REP(i,n) FOR(i,0,n) #define RREP(i,n) for (int i=(n)-1;i>=0;i--) #ifdef LOCAL111 #define DEBUG(x) cout<<#x<<": "<<(x)<<endl template<typename T> void dpite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;} #else #define DEBUG(x) true template<typename T> void dpite(T a, T b){ return; } #endif #define F first #define S second #define SNP string::npos #define WRC(hoge) cout << "Case #" << (hoge)+1 << ": " template<typename T> void pite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;} template<typename T> bool chmax(T& a, T b){if(a < b){a = b; return true;} return false;} template<typename T> bool chmin(T& a, T b){if(a > b){a = b; return true;} return false;} typedef long long int LL; typedef unsigned long long ULL; typedef pair<int,int> P; typedef pair<LL,LL> LP; void ios_init(){ //cout.setf(ios::fixed); //cout.precision(12); #ifdef LOCAL111 return; #endif ios::sync_with_stdio(false); cin.tie(0); } //library typedef long long cost_t; class Edge { public: int to; cost_t cost; Edge(){ } Edge(int x,cost_t y){ to = x; cost = y; } bool operator< (const Edge& x) const { if(cost != x.cost) return cost < x.cost; return to < x.to; } bool operator> (const Edge& x) const { if(cost != x.cost) return cost > x.cost; return to > x.to; } }; class Graph { private: //const long long int INF = (long long)1e18; vector<vector<Edge> > v; int n; public: Graph(int x){ n = x; v = vector<vector<Edge> >(x); } vector<Edge>& operator[](int x){ return v[x]; } const vector<Edge>& operator[](int x) const { return v[x]; } int size() const { return n; } void add_edge(int from, Edge e){ v[from].push_back(e); } void add_edge(int from, int to, cost_t cost){ add_edge(from,Edge(to,cost)); } void add_uedge(int from, int to, cost_t cost){ add_edge(from,to,cost); add_edge(to,from,cost); } }; vector<cost_t> dijkstra(int from, const Graph& v) { vector<cost_t> dist(v.size(),INF); priority_queue<Edge,vector<Edge>,greater<Edge>> que; que.push(Edge(from,0)); while(!que.empty()){ Edge e = que.top(); que.pop(); if(dist[e.to] == INF){ dist[e.to] = e.cost; for(auto to : v[e.to]){ if(dist[to.to] == INF) que.push(Edge(to.to, e.cost+to.cost)); } } } return dist; } vector<cost_t> bellmanford(int from, const Graph& g) { vector<cost_t> res(g.size(),INF); res[from] = 0; bool conf = true; int cnt = 0; while(conf){ conf = false; for(int i = 0; i < g.size(); i++){ if(res[i] != INF) for(const auto& e : g[i]){ if(res[e.to] > res[i]+e.cost){ conf = true; res[e.to] = res[i]+e.cost; } } } if(cnt > g.size()+5) return vector<cost_t>(); cnt++; } return res; } Graph prim(const Graph g) { using T = tuple<cost_t, int, int>; priority_queue<T, vector<T>, greater<T>> qu; int n = g.size(); assert(n != 0); vector<bool> added(n,false); qu.emplace(0,0,0); Graph res(n); while(!qu.empty()){ int from, to; cost_t cost; tie(cost, from, to) = qu.top(); qu.pop(); if(!added[to]){ added[to] = true; res.add_edge(from, to, cost); res.add_edge(to, from, cost); for(const auto &e : g[to]){ if(!added[e.to]){ qu.emplace(e.cost, to, e.to); } } } } return res; } vector<int> tree_getorder(const Graph &g, int root) { vector<int> res; function<void(int p, int pre)> func = [&](int p, int pre){ for(auto &e : g[p]){ if(e.to != pre){ func(e.to,p); } } res.push_back(p); }; func(root,-1); return res; } vector<int> tree_getpar(const Graph &g, int root) { vector<int> par(g.size(),root); function<void(int p, int pre)> func = [&](int p, int pre){ par[p] = pre; for(auto &e : g[p]){ if(e.to != pre){ func(e.to,p); } } }; func(root,root); return par; } //未検証 vector<int> toposort(const Graph &g, int start) { int n = g.size(); vector<int> res; res.reserve(n); vector<bool> used(n,false); function<void(int)> rec = [&](int p){ if(used[p]) return; used[p] = true; for(auto&& e : g[p]) { rec(e.to); } res.push_back(p); }; rec(start); return res; } //liblary int main() { ios_init(); int n; while(cin >> n){ string s; cin >> s; Graph g(n); REP(i,n-1){ int a,b; cin >> a >> b; a--; b--; g.add_uedge(a,b,-1); } auto topo = tree_getorder(g,0); auto par = tree_getpar(g,0); using T = tuple<int,int,int>; vector<T> dp(n,T(0,0,0)); REP(i,n){ int p = topo[i]; int na = 0; int nb = 0; int nc = 0; for(auto&& e : g[p]) { if(e.to != par[p]){ int a,b,c; tie(a,b,c) = dp[e.to]; na += a; nb += b; nc += c; } } if(s[p] == 'c'){ na += nb; }else{ nb += nc; nc++; } dp[p] = T(na,nb,nc); } vector<T> ep(n,T(0,0,0)); REP(i,n){ int p = topo[i]; int na = 0; int nb = 0; int nc = 0; for(auto&& e : g[p]) { if(e.to != par[p]){ int a,b,c; tie(a,b,c) = ep[e.to]; na += a; nb += b; nc += c; } } if(s[p] == 'c'){ nc++; }else{ na += nb; nb += nc; } ep[p] = T(na,nb,nc); } cout << get<0>(dp[0])+get<0>(ep[0]) << endl; } return 0; }