本文出自:http://blog.csdn.net/svitter
题意:
给出昆虫编号,看昆虫能否交配,如果出现同性交配或者自我交配的情况,则出现BUG。
输入输出分析:
1.输入输出数据:
input:
2
3 3
1 2
2 3
1 3
4 2
1 2
3 4
output:
Scenario #1:
Suspicious bugs found!
Sce...
分类:
其他好文 时间:
2014-07-30 12:23:43
阅读次数:
231
Description
Queues and Priority Queues are data structures which are known to most computer scientists. The Queue occurs often in our daily life. There are many people lined up at the lunch time.
...
分类:
其他好文 时间:
2014-07-29 14:47:38
阅读次数:
268
Woo...Woo...原谅我几番莽撞冲动过原谅我始终软弱拖累太多人潮未冲散当初这一伙刀山里火海里从来无惧过有一天赶上壮丽落霞把酒乾杯松开牵挂哼歌去走音哪管这刻已无价到一天得到欢呼喧哗心照一刻抱拥一下当天热血挥洒谁说白过这年华明白锥心的说话都为我明白委屈的眼眸忍著痛楚..
分类:
其他好文 时间:
2014-07-27 12:08:04
阅读次数:
170
AlienTech for better life!~...
分类:
微信 时间:
2014-07-26 15:19:40
阅读次数:
488
G - 中国剩余定理
Time Limit:1000MS Memory Limit:10000KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
Some people believe that there are three cycles in a person's life t...
分类:
其他好文 时间:
2014-07-26 02:46:17
阅读次数:
292
Problem Description
In the modern time, Search engine came into the life of everybody like Google, Baidu, etc.
Wiskey also wants to bring this feature to his image retrieval system.
Every image hav...
分类:
其他好文 时间:
2014-07-24 23:22:23
阅读次数:
256
/*
ID: lucien23
PROG: holstein
LANG: C++
*/
#include
#include
#include
using namespace std;
bool compFun(int x, int y)
{
int temp, i = 0;
while (true)
{
temp = 1 < temp&y...
分类:
其他好文 时间:
2014-07-24 23:11:33
阅读次数:
433
--> 菜单1 菜单2 菜单3 菜单4 --> Coding Serf Web Translations Life Coding Serf Stay @ Front End | &quo...
分类:
Web程序 时间:
2014-07-22 22:36:33
阅读次数:
271
题意:给你一个n m,n代表有多少只昆虫,m代表2只给定的昆虫可以交配
要你来判断是否出现了同性的昆虫相交的情况
思路:并查集的一个小的应用。运用类别转移来做,详细请看代码,这个代码网上叫类别转移啊,发现新大陆了
#include
#include
int f[2005],link[2005];
int find(int x)
{
if(x!=f[x])
f[x]=f...
分类:
其他好文 时间:
2014-07-21 23:27:51
阅读次数:
222
??
Life is like a box of chocolates. You never know what you are gonnaget.
(人生就像一盒巧克力,你永远不知道自己接下来会遇到什么。)每当我遇到困惑的时候,我总会想起电影《阿甘正传》中阿甘奔跑的每个场景,然后我把自己当成阿甘,开始不断的奔跑。
假期里无事,一日突然想起阿甘,于是我又认真地观看了一...
分类:
其他好文 时间:
2014-07-21 22:24:27
阅读次数:
363