上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 55 下一页
摘要: G. Castle Defense time limit per test 1.5 seconds memory limit per test 256 megabytes input standard input output standard output Today you are going 阅读全文
posted @ 2019-10-19 21:15 茄子Min 阅读(192) 评论(0) 推荐(0) 编辑
摘要: int From[maxn], Laxt[maxn], To[maxn G[maxn]; void add(int u, int v) { Next[++cnt] = Laxt[u]; From[cnt] = u; Laxt[u] = cnt; To[cnt] = v; } void tarjan( 阅读全文
posted @ 2019-10-19 19:43 茄子Min 阅读(171) 评论(0) 推荐(0) 编辑
摘要: int From[maxn],Laxt[maxn],To[maxnG[maxn]; int dis[maxn],S,T,ans; void add(int u,int v) { Next[++cnt]=Laxt[u]; From[cnt]=u; Laxt[u]=cnt; To[cnt]=v; } v 阅读全文
posted @ 2019-10-19 19:43 茄子Min 阅读(341) 评论(0) 推荐(0) 编辑
摘要: / 求 无向图的割点和桥 可以找出割点和桥,求删掉每个点后增加的连通块。 需要注意重边的处理,可以先用矩阵存,再转邻接表,或者进行判重 / const int MAXN = 10010; const int MAXM = 100010; struct Edge { int to,next; bool 阅读全文
posted @ 2019-10-19 19:43 茄子Min 阅读(295) 评论(0) 推荐(0) 编辑
摘要: "Educational Codeforces Round 40 (Rated for Div. 2)" C. Matrix Walk time limit per test 1 second memory limit per test 256 megabytes input standard in 阅读全文
posted @ 2019-10-19 00:58 茄子Min 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Repeater "POJ 3768 " Harmony is indispensible in our daily life and no one can live without it may be Facer is the only exception. One day it is rumor 阅读全文
posted @ 2019-10-18 23:29 茄子Min 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 牛客练习赛53 超越学姐爱字符串 链接:https://ac.nowcoder.com/acm/contest/1114/A来源:牛客网 超越学姐非常喜欢自己的名字,以至于英文字母她只喜欢“c”和“y”。因此超越学姐喜欢只含有“c”和“y”的字符串,且字符串中不能出现两个连续的“c”。请你求出有多少 阅读全文
posted @ 2019-10-16 20:53 茄子Min 阅读(203) 评论(0) 推荐(0) 编辑
摘要: Coprime Arrays "CodeForces 915G " Let's call an array a of size n coprime iff gcd ( a 1, a 2, ..., a n ) = 1, where gcd is the greatest common divisor 阅读全文
posted @ 2019-10-08 22:05 茄子Min 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 牛客练习赛52 | C | "烹饪" | | | | | | | 链接:https://ac.nowcoder.com/acm/contest/1084/C来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32768K,其他语言65536K 64bit IO Format 阅读全文
posted @ 2019-10-08 00:23 茄子Min 阅读(320) 评论(0) 推荐(0) 编辑
摘要: P2765 魔术球问题 题目描述 «问题描述: 假设有n根柱子,现要按下述规则在这n根柱子中依次放入编号为1,2,3,...的球。 (1)每次只能在某根柱子的最上面放球。 (2)在同一根柱子中,任何2个相邻球的编号之和为完全平方数。 试设计一个算法,计算出在n根柱子上最多能放多少个球。例如,在4 根 阅读全文
posted @ 2019-10-07 23:02 茄子Min 阅读(264) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 55 下一页