随笔分类 -  图论 -- 最短路

摘要:Contest Info 传送门 Solved A B C D E F G H I J K 8 / 11 Ø - Ø O O Ø O O O - - O 在比赛中通过 Ø 赛后通过 ! 尝试了但是失败了 - 没有尝试 Solutions A. Tokitsukaze, CSL and Palindr 阅读全文
posted @ 2020-08-09 14:58 heyuhhh 阅读(227) 评论(0) 推荐(0) 编辑
摘要:Contest Info 传送门 Solved A B C D E F G H I J K 11 / 11 Ø Ø O O Ø O Ø Ø Ø O Ø O 在比赛中通过 Ø 赛后通过 ! 尝试了但是失败了 - 没有尝试 Solutions A. All with Pairs 题意: 定义$f(s,t 阅读全文
posted @ 2020-07-15 20:58 heyuhhh 阅读(304) 评论(0) 推荐(0) 编辑
摘要:Contest Info 传送门 Solved A B C D E F G H I J K L 8 / 13 Ø O O Ø O - - - Ø Ø - Ø O 在比赛中通过 Ø 赛后通过 ! 尝试了但是失败了 - 没有尝试 Solutions A. Archery Tournament 题意: 现 阅读全文
posted @ 2020-06-06 20:07 heyuhhh 阅读(267) 评论(0) 推荐(0) 编辑
摘要:"传送门" 没参加这场比赛,赛后做了下DE题,还是写下题解吧。。。 D.牛牛的呱数 题意: 牛牛和小青蛙Froggy是好朋友。 牛牛有 n 种很大的数,每种数有无限个,牛牛可以从这些数中任选若干个(至少1个),并把它们拼接起来,拼接顺序任意,所有可以被这样拼接起来的数被成为“呱数”。 如果一个“呱数 阅读全文
posted @ 2020-04-27 18:08 heyuhhh 阅读(221) 评论(0) 推荐(0) 编辑
摘要:"传送门" A. Nastya and Strange Generator 题意好绕,读懂了之后还是比较简单的。 我们从$1$到$n$,每次只能连续地放数直到放不了为止,否则就是不合法的情况。 详见代码: Code B. Nastya and Scoreboard 题意: 每个数可以用$7$根电子管 阅读全文
posted @ 2020-04-24 11:12 heyuhhh 阅读(457) 评论(0) 推荐(0) 编辑
摘要:"传送门" A. Level Statistics 签到。 Code B. Middle Class 贪心。排序后求出前缀和直接搞即可。 Code C. Circle of Monsters 题意: 现有$n$只怪兽围成环,每个怪兽有两个属性$a_i,b_i$,$a_i$为其生命值,$b_i$为怪兽 阅读全文
posted @ 2020-04-16 23:09 heyuhhh 阅读(173) 评论(0) 推荐(0) 编辑
摘要:"传送门" A.打怪 签到。 Code B.吃水果 不妨设$nm$。 令$t=2 n m$,那么$2 (n t)=m t$,所以$n =t,m =t$。 之后再令$n$倍增使得$n=m$。 最后同时减到$0$即可。 贪心的思路大致是用最少的次数使得$n=m$,那么$t=2n m$,之后我们通过一次倍 阅读全文
posted @ 2020-04-16 21:00 heyuhhh 阅读(174) 评论(0) 推荐(0) 编辑
摘要:"传送门" A. Three Strings 签到。 Code B. Motarack's Birthday 贪心,我们把所有关键数字拿出来处理即可。 Code C. Ayoub's function 题意: 定义$f(s):(l,r)$的对数,满足$01$串$s$中$s_l,s_{l+1},\cd 阅读全文
posted @ 2020-02-15 17:08 heyuhhh 阅读(327) 评论(2) 推荐(0) 编辑
摘要:2019牛客暑期多校训练第六场 "题目传送门" A.Garbage Classification 垃圾分类题,模拟即可。 Code cpp include using namespace std; typedef long long ll; const int MAXN = 1e3 + 5; con 阅读全文
posted @ 2019-08-05 09:13 heyuhhh 阅读(283) 评论(0) 推荐(0) 编辑
摘要:我们维护$d[i,0/1]$,其中$d[i,0]$表示从1到$i$号结点经过路径中的最小值,$d[i,1]$表示从$n$出发到$i$的最大值。之后可以考虑枚举中转站$i$,利用$d[i,1] d[i,0]$来更新答案即可。这样做的正确性就是这样可以覆盖所有的情况(肯定会经过一个中转站。 这里我用的d 阅读全文
posted @ 2019-05-16 19:29 heyuhhh 阅读(130) 评论(0) 推荐(0) 编辑
摘要:思路 题中给出的图有单向边和双向边,其中单向边边权可能为负,这其实就说明我们不能直接用dijkstra。(貌似可以双端队列优化的spfa水过去= = 注意到无向边边权是非负的,这提示我们可以在无向边上跑最短路。并且我们可以知道,如果将无向边连接的点缩为一点,最后图中只剩下有向边的话,这个图就是一个D 阅读全文
posted @ 2019-05-16 19:28 heyuhhh 阅读(147) 评论(0) 推荐(0) 编辑
摘要:1880: [Sdoi2009]Elaxia的路线 Time Limit: 4 Sec Memory Limit: 64 MBSubmit: 2049 Solved: 805 题目链接:https://www.lydsy.com/JudgeOnline/problem.php?id=1880 Des 阅读全文
posted @ 2019-03-04 21:21 heyuhhh 阅读(117) 评论(0) 推荐(0) 编辑
摘要:Frogger 题目链接:http://poj.org/problem?id=2253 Description: Freddy Frog is sitting on a stone in the middle of a lake. Suddenly he notices Fiona Frog who 阅读全文
posted @ 2019-02-04 20:24 heyuhhh 阅读(96) 评论(0) 推荐(0) 编辑
摘要:Heavy Transportation 题目链接:http://poj.org/problem?id=1797 Description: Background Hugo Heavy is happy. After the breakdown of the Cargolifter project h 阅读全文
posted @ 2019-02-04 20:16 heyuhhh 阅读(130) 评论(0) 推荐(0) 编辑
摘要:Wormholes 题目链接:http://poj.org/problem?id=3259 Description: While exploring his many farms, Farmer John has discovered a number of amazing wormholes. A 阅读全文
posted @ 2019-02-04 20:09 heyuhhh 阅读(128) 评论(0) 推荐(0) 编辑
摘要:Arbitrage 题目链接:http://poj.org/problem?id=2240 Description: Arbitrage is the use of discrepancies in currency exchange rates to transform one unit of a 阅读全文
posted @ 2019-02-04 19:45 heyuhhh 阅读(239) 评论(0) 推荐(0) 编辑
摘要:Invitation Cards 题目链接:http://poj.org/problem?id=1511 Description: In the age of television, not many people attend theater performances. Antique Comed 阅读全文
posted @ 2019-02-04 19:16 heyuhhh 阅读(147) 评论(0) 推荐(0) 编辑
摘要:Candies 题目链接:http://poj.org/problem?id=3159 Description: During the kindergarten days, flymouse was the monitor of his class. Occasionally the head-te 阅读全文
posted @ 2019-02-04 18:34 heyuhhh 阅读(220) 评论(0) 推荐(0) 编辑
摘要:Subway 题目链接:http://poj.org/problem?id=2502 Description: You have just moved from a quiet Waterloo neighbourhood to a big, noisy city. Instead of getti 阅读全文
posted @ 2019-02-04 18:21 heyuhhh 阅读(168) 评论(0) 推荐(0) 编辑
摘要:Tram 题目链接:http://poj.org/problem?id=1847 Description: Tram network in Zagreb consists of a number of intersections and rails connecting some of them. 阅读全文
posted @ 2019-02-04 11:42 heyuhhh 阅读(129) 评论(0) 推荐(0) 编辑