【BZOJ 3832】[POI2014] Rally

相关链接:

题目传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=3832

解题报告

这题真的是妙不可言!
0MYHX~N~(WNGO)B6[N8ZL40
POI的题目质量真的还不错啊!

先DP预处理一下:
f[]表示顺着走能走多远
g[]表示反着走能走多远
对于边(u,v)给一个权值g[u]+f[v]
不难发现,一个图的最长链此时为权值最大的那一条边

考虑删点,如果会影响到最长链的话
新的最长链一定是从拓扑序小于他的连向拓扑序大于他的某条边的权值
于是搞一搞堆来维护这个东西即可

Code

代码方面,我偷懒写的set+map的写法
想要常数小,请参见:https://blog.sengxian.com/solutions/bzoj-3832

#include<bits/stdc++.h>
#include<tr1/unordered_map>
#define LL long long
using namespace std;
using namespace tr1;

const int N = 500000+9;
const int M = 4000000+9; 
const int INF = 100000000;

int head[N],nxt[M],to[M],rhead[N],n,m,S,T;
int f[N],g[N],in[N],rin[N],vout=INF,Point;
struct CMP{inline bool operator () (const int a, const int b) {return b<a;}};
set<int,CMP> cur; unordered_map<int,int> CNT; queue<int> que;

inline void Add_Edge(int u, int v) {
	static int TT = 1; in[v]++; rin[u]++;
	to[++TT] = v; nxt[TT] = head[u]; head[u] = TT;
	to[++TT] = u; nxt[TT] = rhead[v]; rhead[v] = TT;
}

inline int read(){
	char c=getchar(); int ret=0,f=1;
	while (c<'0'||c>'9') {if(c=='-')f=-1;c=getchar();}
	while (c<='9'&&c>='0') {ret=ret*10+c-'0';c=getchar();}
	return ret*f;
}

void solve(int w, int *frt, int *ret, int *cnt) {
	if (w != S && w != T) que.push(w);
	for (int i=frt[w];i;i=nxt[i]) {
		ret[to[i]] = max(ret[to[i]],ret[w]+1);
		if (!--cnt[to[i]]) solve(to[i],frt,ret,cnt);
 	}
}

int main(){
	n = read(); m = read(); S = 0; T = n+1;
	for (int i=1;i<=n;i++) Add_Edge(S,i), Add_Edge(i,T);
	for (int i=1,u,v;i<=m;i++) u = read(), v = read(), Add_Edge(u,v); 
	solve(S,head,f,in); solve(T,rhead,g,rin);
	for (int i=1;i<=n;++i) if (!CNT[g[i]]++) cur.insert(g[i]);
	for (int op=1;op<=n;op++) {
		int w = que.front(); que.pop(); 
		for (int i=rhead[w];i;i=nxt[i]) if (!--CNT[f[to[i]]+g[w]]) cur.erase(f[to[i]]+g[w]);
		if (vout > *(cur.begin())) vout = *(cur.begin()), Point = w; 
		for (int i=head[w];i;i=nxt[i]) if (!CNT[g[to[i]]+f[w]]++) cur.insert(g[to[i]]+f[w]);
	} printf("%d %d\n",Point,vout-1);
	return 0;
}

197 thoughts to “【BZOJ 3832】[POI2014] Rally”

  1. Hello there, You’ve done an incredible job. I will definitely digg it and personally
    recommend to my friends. I’m confident they’ll be
    benefited from this site.

  2. I all the time used to study paragraph in news papers but now as I am a
    user of internet thus from now I am using net for articles or
    reviews, thanks to web.

  3. You really make it appear really easy along with
    your presentation but I in finding this matter to be
    actually something which I believe I’d by no means understand.
    It sort of feels too complicated and very extensive for
    me. I’m looking forward for your subsequent submit, I’ll attempt to
    get the grasp of it!

  4. Please let me know if you’re looking for a writer for your site.
    You have some really great articles and I think I would be a good asset.
    If you ever want to take some of the load off,
    I’d absolutely love to write some articles for your blog in exchange for a link
    back to mine. Please send me an email if interested. Thank you!

  5. Hi there everyone, it’s my first pay a visit at
    this web site, and piece of writing is in fact fruitful in support of me, keep up posting these types
    of articles or reviews.

  6. Hi! I realize this is kind of off-topic but I needed to ask.
    Does running a well-established website like yours take a lot of work?
    I am brand new to writing a blog but I do write in my journal on a daily basis.

    I’d like to start a blog so I can easily share my personal experience and feelings online.
    Please let me know if you have any kind of ideas or tips for new aspiring bloggers.
    Appreciate it!

  7. An outstanding share! I have just forwarded this onto a friend who had been conducting a
    little research on this. And he actually ordered me lunch
    simply because I found it for him… lol. So allow me to reword this….
    Thanks for the meal!! But yeah, thanx for spending the time to discuss this topic
    here on your internet site.

  8. Hey there! Quick question that’s totally off topic. Do you know how to make your site mobile friendly?

    My website looks weird when browsing from my iphone 4.
    I’m trying to find a template or plugin that might be able to fix this problem.
    If you have any recommendations, please share. Cheers!

  9. Its such as you learn my thoughts! You appear to know so much about
    this, like you wrote the e book in it or something. I think that you simply could do with some % to pressure the message
    house a little bit, but other than that, this is wonderful blog.
    A great read. I will certainly be back.

  10. I’m impressed, I must say. Rarely do I come across a blog that’s both educative and amusing,
    and let me tell you, you have hit the nail on the head. The issue is something that not enough people are
    speaking intelligently about. Now i’m very happy I found this in my search
    for something regarding this.

  11. Thank you for any other informative blog. The place else could I
    get that kind of information written in such a perfect means?
    I have a challenge that I’m simply now operating on, and I have been on the glance out for such info.

  12. Hello to every body, it’s my first pay a quick visit of this web site;
    this weblog consists of awesome and genuinely fine material designed for readers.

  13. Hey there! I’m at work surfing around your blog from my new iphone!
    Just wanted to say I love reading your blog and look forward to all your posts!
    Keep up the excellent work!

  14. Heya! I know this is sort of off-topic but
    I needed to ask. Does building a well-established blog like yours require a lot of work?
    I’m brand new to writing a blog however I do write in my diary everyday.
    I’d like to start a blog so I can share my personal experience and views online.
    Please let me know if you have any recommendations or tips
    for brand new aspiring blog owners. Thankyou!

  15. Usually I don’t read article on blogs, however I would like to say that this write-up very compelled me to
    take a look at and do it! Your writing taste has been amazed me.

    Thanks, very great article.

  16. Hello there, I found your web site by means of Google at the same
    time as looking for a related subject, your site got here
    up, it seems great. I’ve bookmarked it in my google bookmarks.

    Hello there, simply became aware of your blog thru Google, and located that
    it is really informative. I’m gonna watch out for brussels.
    I’ll appreciate if you proceed this in future.
    Lots of other folks shall be benefited from your writing.

    Cheers!

  17. Heya i am for the first time here. I came across this board and I find It truly useful & it helped me out a lot.

    I hope to give something back and help others like you helped me.

  18. Woah! I’m really loving the template/theme of this website.
    It’s simple, yet effective. A lot of times it’s very difficult to get that “perfect balance” between usability and appearance.
    I must say you’ve done a very good job with this.
    In addition, the blog loads super quick for me on Internet explorer.
    Excellent Blog!

  19. obviously like your website however you need to check the spelling on quite
    a few of your posts. A number of them are rife with spelling problems
    and I to find it very troublesome to tell the reality on the
    other hand I will surely come again again.

  20. I was more than happy to find this web site. I want to to thank you for ones time for this particularly wonderful read!!
    I definitely savored every bit of it and I have
    you saved to fav to check out new things in your web
    site.

  21. Simply desire to say your article is as amazing. The clarity in your put up
    is just excellent and that i can think you’re a professional in this subject.
    Fine together with your permission allow me to grab your RSS feed to stay up to date with imminent post.

    Thank you one million and please continue the gratifying work.

  22. Definitely consider that which you stated. Your favourite reason appeared
    to be on the web the easiest thing to consider of.
    I say to you, I definitely get annoyed at the same time
    as other folks think about concerns that they just do not understand
    about. You controlled to hit the nail upon the top as smartly as outlined out the whole thing without having side-effects , other people can take a signal.
    Will likely be back to get more. Thank you

  23. Hi there! I just wanted to ask if you ever have any issues with hackers?
    My last blog (wordpress) was hacked and I ended up losing months of hard work due to no back up.
    Do you have any methods to prevent hackers?

  24. I do accept as true with all of the ideas you’ve presented on your post.
    They’re really convincing and can certainly work.

    Still, the posts are very quick for newbies. Could you please prolong
    them a little from subsequent time? Thanks for the post.

  25. It is the best time to make some plans for the future and it is time to
    be happy. I’ve read this post and if I could I want to suggest you
    some interesting things or advice. Maybe you could
    write next articles referring to this article. I wish to read more things about it!

  26. Hi, I do believe this is a great blog. I stumbledupon it 😉
    I’m going to come back once again since I bookmarked it.
    Money and freedom is the best way to change,
    may you be rich and continue to help others.

  27. Can I simply say what a comfort to find somebody that actually
    understands what they are discussing online.
    You definitely know how to bring an issue to light and make it important.
    More and more people really need to check this out and understand this side of the story.
    I was surprised that you are not more popular since you most certainly have the gift.

  28. Hey there! I realize this is somewhat off-topic but I
    had to ask. Does building a well-established blog
    such as yours take a massive amount work? I am completely new to writing a
    blog however I do write in my journal daily. I’d like
    to start a blog so I will be able to share my experience and thoughts
    online. Please let me know if you have any kind of suggestions or
    tips for brand new aspiring blog owners. Thankyou!

  29. I am really enjoying the theme/design of your site.
    Do you ever run into any web browser compatibility problems?
    A small number of my blog readers have complained about
    my website not operating correctly in Explorer but looks great in Opera.
    Do you have any solutions to help fix this problem?

  30. Unquestionably believe that that you said. Your favourite
    justification seemed to be on the net the easiest factor to understand of.
    I say to you, I certainly get irked even as other people think about worries that
    they plainly don’t know about. You controlled to
    hit the nail upon the top and outlined out the whole thing without having side-effects ,
    other people can take a signal. Will likely be back to get more.
    Thanks

  31. Hello i am kavin, its my first occasion to commenting anywhere,
    when i read this post i thought i could also create comment due to
    this good piece of writing.

  32. hello!,I love your writing so a lot! percentage we
    keep up a correspondence more about your post on AOL?
    I need a specialist on this area to unravel my problem.
    Maybe that is you! Looking forward to look you.

  33. I loved as much as you will receive carried out right here.
    The sketch is attractive, your authored material stylish.
    nonetheless, you command get got an edginess over that you
    wish be delivering the following. unwell unquestionably
    come further formerly again since exactly the same nearly very often inside case you shield
    this hike.

  34. Hmm it appears like your blog ate my first comment (it was super long) so I guess I’ll just sum it up what I submitted and say, I’m thoroughly enjoying your blog.
    I too am an aspiring blog blogger but I’m still new to
    everything. Do you have any helpful hints for inexperienced blog writers?
    I’d definitely appreciate it.

  35. My partner and I absolutely love your blog and
    find many of your post’s to be precisely what I’m looking for.
    Does one offer guest writers to write content in your case?
    I wouldn’t mind producing a post or elaborating on most of the subjects
    you write regarding here. Again, awesome blog!

  36. Excellent goods from you, man. I have understand your stuff previous to and you’re just extremely
    fantastic. I actually like what you’ve acquired here, really like what you are saying and the way in which you
    say it. You make it enjoyable and you still care
    for to keep it wise. I can not wait to read far
    more from you. This is actually a wonderful site.

  37. I know this if off topic but I’m looking into starting my own blog and was curious what all is required to get set up?
    I’m assuming having a blog like yours would cost a pretty penny?
    I’m not very internet smart so I’m not 100% sure.
    Any suggestions or advice would be greatly appreciated.
    Many thanks

  38. I love your blog.. very nice colors & theme.
    Did you make this website yourself or did you hire
    someone to do it for you? Plz respond as I’m looking
    to create my own blog and would like to find out where u got this from.
    kudos

  39. Hey there this is kind of of off topic but I was wondering if blogs use WYSIWYG editors or
    if you have to manually code with HTML. I’m starting a blog soon but have no coding expertise so I wanted to get guidance from someone with experience.
    Any help would be greatly appreciated!

  40. Nice post. I was checking constantly this blog and I’m impressed!
    Very helpful information particularly the last part 🙂 I care for
    such info a lot. I was looking for this particular information for a long time.
    Thank you and best of luck.

  41. Just wish to say your article is as amazing. The clearness in your post is
    just cool and i can assume you are an expert on this subject.
    Fine with your permission allow me to grab your feed to keep up to
    date with forthcoming post. Thanks a million and please
    keep up the rewarding work.

  42. I was recommended this website by means of my cousin. I am no longer certain whether this put
    up is written via him as no one else realize such designated about my difficulty.
    You’re amazing! Thank you!

  43. Greate post. Keep writing such kind of information on your blog.
    Im really impressed by your blog.
    Hello there, You have performed a fantastic job.
    I will certainly digg it and individually suggest to my friends.
    I’m confident they will be benefited from this website.

  44. I’m not sure where you are getting your information, but great
    topic. I needs to spend some time learning more or understanding more.
    Thanks for excellent information I was looking for this info for my mission.

  45. Howdy are using WordPress for your blog platform? I’m new to the blog world but I’m
    trying to get started and set up my own. Do you need any coding expertise
    to make your own blog? Any help would be really
    appreciated!

  46. I’ve been exploring for a little for any
    high quality articles or weblog posts in this kind of house .

    Exploring in Yahoo I finally stumbled upon this website.
    Studying this info So i am satisfied to convey that
    I have an incredibly excellent uncanny feeling I discovered exactly what
    I needed. I such a lot without a doubt will make sure to don?t omit this website and give it a glance on a relentless basis.

  47. Thanks for another informative blog. The place else could I am getting that kind of info
    written in such an ideal means? I’ve a mission that I’m
    simply now running on, and I have been on the glance out for such information.

  48. Greetings! I know this is kinda off topic but I was wondering which
    blog platform are you using for this site? I’m getting tired of WordPress because I’ve had issues with hackers
    and I’m looking at alternatives for another platform.
    I would be great if you could point me in the direction of a good platform.

  49. Hmm it seems like your blog ate my first comment (it
    was super long) so I guess I’ll just sum it up what I wrote and say, I’m thoroughly enjoying your blog.
    I too am an aspiring blog writer but I’m still new to everything.
    Do you have any points for novice blog writers?
    I’d certainly appreciate it.

  50. Hi would you mind letting me know which webhost you’re utilizing?
    I’ve loaded your blog in 3 completely different internet browsers
    and I must say this blog loads a lot faster then most.
    Can you recommend a good web hosting provider at a honest price?
    Kudos, I appreciate it!

  51. Hey There. I found your blog using msn. That is a very well written article.

    I will be sure to bookmark it and return to learn extra of
    your useful information. Thanks for the post. I’ll definitely return.

  52. Hello, Neat post. There’s an issue together with your web site in internet explorer, would test this?
    IE nonetheless is the marketplace chief and a big element of other folks will miss your fantastic
    writing due to this problem.

  53. You really make it seem so easy with your presentation but
    I find this matter to be actually something that I think I would never
    understand. It seems too complex and extremely broad for
    me. I’m looking forward for your next post, I’ll try to
    get the hang of it!

  54. I’m extremely pleased to discover this page. I want to to thank you for ones time just for this fantastic read!!

    I definitely liked every little bit of it and I have you
    bookmarked to look at new stuff in your web site.

  55. Magnificent items from you, man. I have take into accout your stuff prior to and you are simply extremely magnificent.
    I actually like what you have obtained right here, really like what you are saying
    and the way during which you assert it. You are making it enjoyable and
    you continue to take care of to keep it smart.
    I cant wait to read much more from you. That is actually a great website.

  56. I was curious if you ever thought of changing the layout of your website?
    Its very well written; I love what youve got to say.

    But maybe you could a little more in the way of content
    so people could connect with it better. Youve
    got an awful lot of text for only having
    one or 2 images. Maybe you could space it out better?

  57. Howdy! I know this is kinda off topic nevertheless I’d figured I’d
    ask. Would you be interested in exchanging links or maybe guest writing a blog article or vice-versa?
    My site discusses a lot of the same topics as yours and I
    believe we could greatly benefit from each other. If
    you’re interested feel free to shoot me an email.

    I look forward to hearing from you! Awesome blog by the way!

  58. Heya! I realize this is kind of off-topic but I had to ask.

    Does operating a well-established website like yours take a massive amount work?
    I’m completely new to blogging however I do write in my journal every
    day. I’d like to start a blog so I can share my own experience and views online.
    Please let me know if you have any kind of recommendations
    or tips for new aspiring bloggers. Appreciate it!

  59. I do believe all of the ideas you have offered to your post.
    They are very convincing and will definitely work.
    Still, the posts are very quick for newbies. May you please prolong them a bit from subsequent time?
    Thank you for the post.

  60. Hi! I know this is kind of off topic but I was wondering which blog
    platform are you using for this site? I’m getting tired of WordPress because I’ve had issues with hackers and I’m looking
    at alternatives for another platform. I would be great if you
    could point me in the direction of a good platform.

  61. I was curious if you ever thought of changing the page layout of your blog?
    Its very well written; I love what youve got to say.
    But maybe you could a little more in the way
    of content so people could connect with it better.
    Youve got an awful lot of text for only having 1 or two images.
    Maybe you could space it out better?

  62. Thank you for every other informative website.
    The place else could I am getting that kind of information written in such an ideal manner?
    I’ve a mission that I’m simply now operating on, and
    I’ve been on the glance out for such information.

  63. Howdy! Quick question that’s totally off topic.
    Do you know how to make your site mobile friendly? My weblog looks weird when viewing from my iphone4.

    I’m trying to find a template or plugin that might be able to fix this problem.
    If you have any recommendations, please share.

    Appreciate it!

  64. Hello there! I know this is kinda off topic nevertheless I’d
    figured I’d ask. Would you be interested in trading links or maybe guest
    authoring a blog post or vice-versa? My blog addresses a lot of the same topics
    as yours and I believe we could greatly benefit from each other.
    If you are interested feel free to send me an email.
    I look forward to hearing from you! Awesome blog by the way!

  65. Nice post. I learn something new and challenging on websites I
    stumbleupon everyday. It’s always interesting to read through articles from other writers and
    use something from other websites.

  66. Hey! Someone in my Myspace group shared this site with us so I came to look it over.
    I’m definitely loving the information. I’m bookmarking and will be
    tweeting this to my followers! Fantastic blog and brilliant design.

  67. We absolutely love your blog and find nearly all of your post’s to be exactly what I’m looking
    for. Do you offer guest writers to write content in your
    case? I wouldn’t mind composing a post or elaborating on many of the subjects you write regarding here.
    Again, awesome web log!

  68. Good post. I learn something totally new and challenging on sites
    I stumbleupon everyday. It’s always useful to read through content from other authors and practice something from
    other web sites.

  69. Have you ever thought about adding a little bit more than just your articles?
    I mean, what you say is fundamental and everything. However think of if you added some great images or videos to give your
    posts more, “pop”! Your content is excellent but
    with images and clips, this blog could undeniably be one of the best
    in its niche. Great blog!

  70. Hmm is anyone else encountering problems with the pictures on this blog
    loading? I’m trying to figure out if its a problem on my end or
    if it’s the blog. Any feedback would be greatly appreciated.

  71. Magnificent beat ! I wish to apprentice while you amend your site, how could i subscribe for a blog website?
    The account aided me a acceptable deal. I had been tiny
    bit acquainted of this your broadcast offered bright clear idea

  72. Right here is the right site for anyone who really wants to find out about
    this topic. You realize a whole lot its almost tough to argue with you (not that I personally would want to…HaHa).
    You certainly put a brand new spin on a topic that has been discussed for years.
    Excellent stuff, just great!

  73. You really make it appear so easy along with your
    presentation but I to find this matter to be actually one thing which I think
    I might by no means understand. It sort of feels too complicated and extremely wide for me.
    I’m having a look forward for your next put up, I’ll attempt to get the hold of it!

  74. Aw, this was an incredibly nice post. Spending some time and actual effort to produce
    a really good article… but what can I say…
    I put things off a lot and never manage
    to get nearly anything done.

  75. I loved as much as you will receive carried out right here.

    The sketch is attractive, your authored subject matter
    stylish. nonetheless, you command get bought an shakiness over that you
    wish be delivering the following. unwell unquestionably
    come more formerly again as exactly the same nearly a lot often inside
    case you shield this increase.

  76. I’m not sure where you’re getting your info, but good
    topic. I needs to spend some time learning much more or understanding more.
    Thanks for wonderful information I was looking for this information for my mission.

  77. I know this if off topic but I’m looking into starting my own blog and was wondering
    what all is required to get setup? I’m assuming having a
    blog like yours would cost a pretty penny?
    I’m not very internet smart so I’m not 100% sure. Any suggestions or advice would be greatly appreciated.
    Thanks

  78. you’re really a excellent webmaster. The web site loading velocity is amazing.
    It sort of feels that you’re doing any unique trick.

    Moreover, The contents are masterwork. you’ve done a
    fantastic task on this matter!

  79. I loved as much as you will receive carried out right here.
    The sketch is attractive, your authored subject matter stylish.
    nonetheless, you command get bought an shakiness over that
    you wish be delivering the following. unwell unquestionably come more
    formerly again as exactly the same nearly very often inside case you shield
    this increase.

Leave a Reply

Your email address will not be published. Required fields are marked *