E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
2524
hdu
2524
枚举
思路1:暴力枚举即可,数据范围足够小。 1 #include <iostream> 2 using namespace std; 3 4 int solve( int n, int m ) 5 { 6 int ans = 0; 7 for ( int i = 1; i <= n; i++ ) 8 { 9
·
2015-11-09 13:40
HDU
POJ
2524
//7956395 vrs
2524
Accepted 536K 
·
2015-11-09 12:29
poj
POJ
2524
Ubiquitous Religions (并查集)
文章作者:ktyanny 文章来源:ktyanny 转载请注明,谢谢合作。 ktyanny:a的第二道并查集。第一题在 这里 题目描述: 世界上宗教何其多。假设你对自己学校的学生总共有多少种宗教信仰很感兴趣。学校有n个学生,但是你不能直接问学生的信仰,不然他会感到很不舒服的。有另外一个方法是问m对同学,是否信仰同一宗教。根据这些数据,相信聪明的
·
2015-11-08 12:27
poj
POJ
2524
Ubiquitous Religions 【并查集】
解题思路:输入总人数 n,和m组数据;即和杭电畅通工程相类似,对这m组数据做合并操作后,求最后一共有多少块区域。 #include<stdio.h> int pre[50001]; int find(int root) { if(root!=pre[root]) pre[root]=find(pre[root]); return pre[root]; } v
·
2015-11-07 14:40
poj
Ubiquitous Religions--POJ
2524
1、解题思路:并查集。 2、注意事项:借用father[]、rank[]两个数组记录的小技巧。 3、实现方法: 1 #include < iostream > 2 #define M 50010 3 using namespace std;
·
2015-11-02 16:58
poj
HDU
2524
矩形A + B
分析:应该是简单题一个吧。 用矩阵来分析一下题目。 设一矩阵d[i,j],d[i,j]表示为网格grid[i,j]中,所有矩形含有第[i,j]此格的总数。 d的其中一些数据为: 1 2 3 4 1 1 2 3 4 2 2 4 6 8 3 3
·
2015-11-02 16:19
HDU
POJ
2524
(简单并查集) Ubiquitous Religions
题意:有编号为1到n的学生,然后有m组调查,每组调查中有a和b,表示该两个学生有同样的宗教信仰,问最多有多少种不同的宗教信仰 简单并查集 1 //#define LOCAL 2 #include <iostream> 3 #include <cstdio> 4 #include <cstring> 5 using n
·
2015-11-02 11:52
poj
poj
2524
简单并查集 View Code #include < iostream > #include < cstdio > #include < cstdlib > #include < cstring
·
2015-11-02 10:24
poj
poj
2524
Ubinquitous Religions (并查集)
id=
2524
依旧简单并查集,拿1611火速改了改火速提交,果断PE...把输出的最后一个空格放%d前面了,真活该不运行就交。 但是这题有个疑问,为什么按秩合并没有比直接合并快??
·
2015-11-01 16:35
poj
pku
2524
Ubiquitous Religions
id=
2524
题目分类是分治,我不知道怎么用分治。
·
2015-11-01 14:56
pku
pku
2524
-----Ubiquitous Religions(初次接触并查集)
方法一:time limited:对于合并操作要搜遍全部元素 Code //并查集 //方法一:用集合中最小元素标记集合。 //对于合并操作要搜遍全部元素。 #include<stdio.h> int set[50001],n,m,a,b,caseno=0; void init() { &n
·
2015-11-01 09:41
并查集
POJ
2524
Ubiquitous Religions
Ubiquitous Religions Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 17089 Accepted: 8283 Description There are so many different religions in the world today
·
2015-10-31 15:52
poj
POJ
2524
Ubiquitous Religions
Ubiquitous Religions Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 22972 Accepted: 11331 Description There are so many different rel
·
2015-10-31 11:34
poj
POJ
2524
Ubiquitous Religions (最简单的并查集)
Ubiquitous Religions Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 19259 Accepted: 9460 Description There are so many different religion
·
2015-10-31 11:46
poj
poj
2524
Ubiquitous Religions Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 13962 Accepted: 6676 Description There are so many different religions in the worl
·
2015-10-31 10:11
poj
POJ---
2524
Ubiquitous Religions[简单并查集]
Ubiquitous Religions Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 17762 Accepted: 8653 Description There are so many different religions in the world today
·
2015-10-31 10:23
poj
Ubiquitous Religions(无处不在的宗教)
poj
2524
并查集基础题,但是由于刚开始不熟悉,还是错了好几次 题目大意:有学生学号1--n,给你一些学生之间的关系,即属于同一宗教的学生, 找出共有多少不同的宗教数 解决:就是一个并查集的最基础题目
·
2015-10-31 10:28
qui
POJ
2524
Ubiquitous Religions (并差集)
id=
2524
#include <iostream>//对并差集的不熟悉 #include <cstdio> using namespace
·
2015-10-31 09:27
poj
POJ
2524
-宗教问题-并查集-ACM
太难的搞不过,只能来写简单的了 POJ
2524
无所不在的宗教 世界上宗教何其多。假设你对自己学校的学生总共有多少种宗教信仰很感兴趣。
·
2015-10-31 09:38
ACM
PKU POJ
2524
解题报告(并查集)
文章作者:yx_th000 文章来源:Cherish_yimi (http://www.cnblogs.com/cherish_yimi/) 转载请注明,谢谢合作。并查集学习--并查集详解 Ubiquitous Religions Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 9637
·
2015-10-31 08:30
poj
hdu
2524
矩形A + B(训练思维的好题)
也许acm的迷人之处就在于这样的题目,当然也就是一些大牛嘴里的水题。 这一题,我做的时候想通过实例去发现他们之间是否存在什么关系,可惜数很小的时候情况就非常多,感觉无从下手,一直也没有解出来。 其实,就是遇到这样的问题,不能站在一个高度上去看这个问题,及思维局限在了繁杂的实例上。 这一题可以这样考虑: 假如有m行n列,首先,考虑单独的一行,一行一共有n个矩形,一个小单位矩形组成的矩形有n个
·
2015-10-28 08:15
HDU
POJ
2524
Ubiquitous Religions
Ubiquitous Religions Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 24111 Accepted: 11881 Description There are so many different rel
·
2015-10-27 15:48
poj
poj
2524
-Ubiquitous Religions
C - Ubiquitous Religions Time Limit: 5000 MS Memory Limit: 65536 KB 64-bit integer IO format: %I64d , %I64u Java class name: Main Description There are so many dif
·
2015-10-21 11:03
poj
POJ
2524
Ubiquitous Religions (并查集)
#include #defineMAX_STDDENTS50000 intnumOfStudents,numOfPairs; intreligion[MAX_STDDENTS+1]; intrank[MAX_STDDENTS+1]; voidmakeSet(){ intstudent; for(student=1;studentrank[another]){ religion[
tiutiu2011
·
2015-10-08 15:00
poj
并查集
Ubiquitous
2524
Religions
HDU
2524
矩形A + B(dp)
Description给你一个高为n,宽为m列的网格,计算出这个网格中有多少个矩形Input第一行输入一个t,表示有t组数据,然后每行输入n,m,分别表示网格的高和宽(n intmain() { intt,m,n,dp[101]={0}; for(inti=1;i<101;i++) dp[i]=dp[i-1]+i; scanf("%d",&t); while(t--) { scanf("%d%d"
V5ZSQ
·
2015-10-03 10:00
杭电acm
2524
一个n*m的矩形,当n=1时,即只有一列:一个一个地数,有m个;二个二个地数,有m-1个;。。。;m个m个地数,有1个。所以就有(1+m)*m/2个。当m=1时,即只有一行:一个一个地数,有n个;二个二个地数,有n-1个;。。。;n个n个地数,有1个。所以就有(1+n)*n/2个。所以在n*m的矩形中,一共有(1+n)*n/2*(1+m)*m/2个。#include intmain() { in
riverflowrand
·
2015-09-23 18:00
ACM
HDU
hdu4465 Candy(快速排列组合+概率)
4465CandyTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):
2524
hellohelloC
·
2015-09-02 10:00
POJ
2524
Ubiquitous Religions(宗教种类:并差集)
id=
2524
UbiquitousReligionsTimeLimit:5000MSMemoryLimit:65536KTotalSubmissions:27774Accepted:13610DescriptionTherearesomanydifferentreligionsintheworldtodaythatitisdifficulttok
hellohelloC
·
2015-08-30 10:00
Ubiquitous Religions(POJ_
2524
)
DescriptionTherearesomanydifferentreligionsintheworldtodaythatitisdifficulttokeeptrackofthemall.Youareinterestedinfindingouthowmanydifferentreligionsstudentsinyouruniversitybelievein.Youknowthattherea
highmath_Final
·
2015-08-18 16:00
POJ
2524
Ubiquitous Religions
POJ
2524
UbiquitousReligionsDescriptionTherearesomanydifferentreligionsintheworldtodaythatitisdifficulttokeeptrackofthemall.Youareinterestedinfindingouthowmanydifferentreligionsstudentsinyouruniversityb
qq_21120027
·
2015-08-14 20:00
poj
并查集
Poj
2524
Ubiquitous Religions
请点击此处,将会让你传送 #include usingnamespacestd; constintmaxn=50000+5; intfa[maxn],rank[maxn]; intm,n,ans; voidInit(intx) { for(inti=0;irank[fy]) { fa[fy]=fx; //sum[fx]+=sum[fy]; } else { fa[fx]=fy; if(rank
qingshui23
·
2015-08-10 11:00
并查集
poj
2524
并查集
UbiquitousReligionsTimeLimit: 5000MS MemoryLimit: 65536KTotalSubmissions: 27461 Accepted: 13478DescriptionTherearesomanydifferentreligionsintheworldtodaythatitisdifficulttokeeptrackofthemall.Youareint
became_a_wolf
·
2015-08-09 21:00
HDU
2524
--矩形A + B【推理 && 水题】
矩形A+BTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):5072 AcceptedSubmission(s):3952ProblemDescription给你一个高为n,宽为m列的网格,计算出这个网格中有多少个矩形,下图为高为2,宽为4的网格. Inp
hpuhjh
·
2015-07-31 23:00
hdoj 3416 Marriage Match IV 【最大流 + 最短路】
MarriageMatchIVTimeLimit:2000/1000MS(Java/Others)MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):
2524
AcceptedSubmission
笑着走完自己的路
·
2015-07-29 00:48
最短路径
网络流
POJ -
2524
- Ubiquitous Religions(并查集)
UbiquitousReligionsTimeLimit:5000MS MemoryLimit:65536KTotalSubmissions:27235 Accepted:13376DescriptionTherearesomanydifferentreligionsintheworldtodaythatitisdifficulttokeeptrackoft
violet_echo_0908
·
2015-07-25 15:00
poj
并查集
POJ
2524
Ubiquitous Religions
Ubiquitous Religions Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 22972 Accepted: 11331 Description There are so many different rel
·
2015-07-18 19:00
poj
poj 并查集 -
2524
Ubiquitous Religions
并查集题目,并的意思就是将两个不同类别的集合合并到一起,类似于两棵树合并;查的意思就是找到这个点所属集合的根节点。基本上并查集题目都是在大体架构上面加一些东西即可。并查集代码模板在这里点击打开链接每个人都可能有不同的信仰,有n个学生,给出一些line,每个line里的两个人信仰一样,最后判断有n个学生中最多有多少信仰。我们在原本模板上加入一个记录信仰数的变量num,一开始num=n,在合并两个有相
u010006643
·
2015-04-24 20:00
poj
并查集
POJ
2524
Ubiquitous Religions(并查集)
UbiquitousReligionsTimeLimit:5000MS MemoryLimit:65536KTotalSubmissions:25556 Accepted:12619DescriptionTherearesomanydifferentreligionsintheworldtodaythatitisdifficulttokeeptrackofthemall.Youareinteres
u013068502
·
2015-01-29 10:00
poj
4412开发板 DVFS camera预览性能测试
640x480160000(1.6G)时4核全开, echoPeformance>scaling_governorMem:58220Kused,969844Kfree,0Kshrd,268Kbuff,
2524
Kcached
liujia2100
·
2015-01-20 21:00
POJ
2524
Ubiquitous Religions 并查集
并查集水题。求出并查集中集合的个数。#include #include usingnamespacestd; #defineMAX50010 intpar[MAX],rank[MAX]; voidInit(intn) { for(inti=1;irank[y]) { par[y]=x; rank[x]+=rank[y]; } else { par[x]=y; rank
AC_Gibson
·
2015-01-04 20:00
HDU - 2680 - Choose the best route (经典最短路问题dijkstra算法!!)
Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):7671 AcceptedSubmission(s):
2524
ProblemDescriptionOneday
u014355480
·
2015-01-01 21:00
ACM
最短路
HDU
dijkstra
HDOJ
2524
矩形A + B
矩形A+BTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):4262 AcceptedSubmission(s):3294ProblemDescription给你一个高为n,宽为m列的网格,计算出这个网格中有多少个矩形,下图为高为2,宽为4的网格. Inp
zwj1452267376
·
2014-12-15 20:00
POJ-
2524
-Ubiquitous Religions (基本并查集!)
UbiquitousReligionsTimeLimit: 5000MS MemoryLimit: 65536KTotalSubmissions: 25152 Accepted: 12406DescriptionTherearesomanydifferentreligionsintheworldtodaythatitisdifficulttokeeptrackofthemall.Youareint
u014355480
·
2014-11-21 12:00
Algorithm
C++
C语言
ACM
并查集
poj
2524
-Ubiquitous Religions(并查集)
题目大意:在一个大学里面有的学生信仰不同的宗教,注意一点就是下面没出现的学生,视为他们各自信仰不同的宗教。问总共有多少个宗教?解析:并查集的水题。直接上模板。#include #include usingnamespacestd; constintN=50010; intn,m; intpa[N],son[N]; voidinit(){ for(inti=1;i<=n;i++){ pa[i]=i;
HelloWorld10086
·
2014-11-14 11:00
poj
2524
Religions
Ubiquitous
POJ -
2524
Ubiquitous Religions
同样是一道并查集直接用的题目,我们最初把宗教信仰看成每个人新一个,然后和一个减一个,就可以了。#include #include #include usingnamespacestd; inttree[50009],sum; intfind(intx) { if(tree[x]==x) { returnx; } return(tree[x]=find(tree[x])); } voidmake
Mosu_
·
2014-11-04 20:00
Lync 2010 学习(十),解决演示白板问题
确保外部网络能telnet通Lync边缘的444端口 解决方法来自如下链接https://social.technet.microsoft.com/Forums/office/en-US/13d850eb-
2524
mozhenhua
·
2014-10-20 14:12
style
客户端
border
target
blank
《MATLAB与系统仿真》 数组和数组运算
id=2870第6、7讲参考文档http://wenku.baidu.com/view/95b06ae
2524
de518964b7d6f.html 数组的直接创建【例2-1】数组的直接创建>>A=[1
Leytton
·
2014-10-20 12:00
运算
数组
matlab
MATLAB与系统仿真
hdu1358 Period
PeriodTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):
2524
svtter
·
2014-10-17 23:00
编程
C++
c
算法
hdu1358 Period
PeriodTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):
2524
svtter
·
2014-10-17 23:00
编程
C++
c
算法
hdu
2524
矩形A + B
矩形A+BTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):4262 AcceptedSubmission(s):3294ProblemDescription给你一个高为n,宽为m列的网格,计算出这个网格中有多少个矩形,下图为高为2,宽为4的网格. Inp
u013806814
·
2014-10-13 08:00
C++
HDU
上一页
1
2
3
4
5
6
7
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他