-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rerooting-dp.hpp #120
base: main
Are you sure you want to change the base?
rerooting-dp.hpp #120
Conversation
方針について抽象化の仕方は基本的に Costについてweighted, unweightedでわけてもいい気がしています。 下に並べてる具体的な関数についてただでさえややこしいので、具体化した関数はいろいろ提供していいと思っています。 |
Line 62 in 8057174
Line 76 in 8057174
|
Costは省略されることを前提に設計していましたが、確かにEも省略できますね。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コメントが大変遅れてしまいました…
Costとかidを省略できるといいですが、いろいろ省略できるようになると少ない引数での呼び出しがどの順番になるのかよくわからなくなりそうなので、どちらでも良いと思います
cpp/rerooting-dp.hpp
Outdated
for (int u : rooted.preorder) { | ||
const auto& ch = rooted.child[u]; | ||
std::vector<E> ri(ch.size() + 1, e); | ||
for (size_t i = ch.size(); i > 0; i--) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
結構どうでもいいんですが、C言語のsize_tよりC++のstd::size_tを使いたい
#119
使用例
aoj-1595
https://judge.u-aizu.ac.jp/onlinejudge/review.jsp?rid=9384833
aoj-grl-5-a
https://judge.u-aizu.ac.jp/onlinejudge/review.jsp?rid=9384850
atcoder-dp-v
https://atcoder.jp/contests/dp/submissions/54997603
atcoder-abc220-f
https://atcoder.jp/contests/abc220/submissions/54997658