最新 最热

Oil Deposits (HDU - 1241 )(DFS思路 或者 BFS思路)

题解:每个点(为被修改,是#)进行一次dfs,每次dfs到的点,也就是八个方向都将  '#'  修改成  '*',下次dfs就不用再搜索这一点了,因为已经确定这个点和前面的点是一个部分,这样遍历一遍图,如果可以dfs(i,j),ans+...

2023-03-09
0

Catch That Cow (POJ - 3278)(简单BFS)

题解:给你x、y,x可以加1、减1、或者变成2*x,问通过最少的次数来让x等于y,这是最基础的bfs,就是把x通过一次的+1、-1、*2得到的数都放到队列里面,再把这些通过一次操作得到的数进行相同的操作+1、-1、*2,因为用个结构体来存放...

2023-03-09
0

棋盘问题 ( POJ -1321 )(简单DFS)

转载请注明出处:https://blog.csdn.net/Mercury_Lc/article/details/82684942   作者:Mercury_Lc题目链接题解:dfs入门,就是每个点都搜索一下,什么时候够了k个就ans++。#include <iostream>#include <cstdio>......

2023-03-09
0

Harmonic Number (LightOJ 1234)(调和级数 或者 区块储存答案)

In this problem, you are given n, you have to find Hn.

2023-03-09
0

Leading and Trailing(LightOJ - 1282)

题解:求一个数的次幂,然后输出前三位和后三位,后三位注意有前导0的情况。 后三位直接用快速幂取模求解。

2023-03-09
0

权势二进制(51Nod 1413)

一个十进制整数被叫做权势二进制,当他的十进制表示的时候只由0或1组成。例如0,1,101,110011都是权势二进制而2,12,900不是。

2023-03-09
0

0和5 (51Nod)

小K手中有n张牌,每张牌上有一个一位数的数,这个字数不是0就是5。小K从这些牌在抽出任意张(不能抽0张),排成一行这样就组成了一个数。使得这个数尽可能大,而且可以被90整除。...

2023-03-09
0

CaoHaha's staff (HDU 6154)(2017中国大学生程序设计竞赛 - 网络选拔赛)

"You shall not pass!" After shouted out that,the Force Staff appered in CaoHaha's hand. As we all know,the Force Staff is a staff with infinity power.If you c...

2023-03-09
0

Friend-Graph (HDU 6152)2017中国大学生程序设计竞赛 - 网络选拔赛

It is well known that small groups are not conducive of the development of a team. Therefore, there shouldn’t be any small groups in a good team. In a team wit...

2023-03-09
0

Financial Management(SDUT 1007)

Larry graduated this year and finally has a job. He's making a lot of money, but somehow never seems to have enough. Larry has decided that he needs to grab hol...

2023-03-09
1