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
Bead
POJ 数学题目
*简单题:(直接用套公式就可以了) pku2409 Let it
Bead
&
·
2015-11-13 02:46
poj
TJU 3758. Jewel 【划分树,树状数组】
Jewel 模拟题,开始数组为空,有以下操作:Insert x Put a
bead
with size x to the right of
·
2015-11-12 22:36
树状数组
POJ 2409 Let it
Bead
【polya 计数法,burnside定理】
POJ 2409 Let it
Bead
算法核心:polya 计数法,burnside定理http://blog.sina.com.cn/s/blog_6f71bea30100opru.html
·
2015-11-12 22:24
ide
POJ 2409 Let it
Bead
(Polya定理)
点我看题目 题意 :给你c种颜色的n个珠子,问你可以组成多少种形式。 思路 :polya定理的应用,与1286差不多一样,代码一改就可以交。。。。POJ 1286题解 #include <stdio.h> #include <iostream> #include <string.h> #include <math.h> #i
·
2015-11-12 13:33
poj
POJ 2409 Let it
Bead
(Polya计数原理)
题目链接 和上个题一样。。 1 #include <stdio.h> 2 #include <string.h> 3 #include <math.h> 4 #define eps 0.0000001 5 int gcd(int a,int b) 6 { 7 return b == 0?a:gcd(b,a%b); 8
·
2015-11-11 10:53
poj
POJ数学题目
*简单题:(直接用套公式就可以了) pku2409 Let it
Bead
&nbs
·
2015-11-11 06:21
poj
[代码]POJ 2409 Let it
Bead
Abstract POJ 2409 Let it
Bead
Polya定理 Body #include <cstdio>#include <cstring>
·
2015-11-09 14:04
poj
【HDU】3923 Invoker
同【POJ】2409 Let it
Bead
只不过要求逆元。
·
2015-11-08 17:32
HDU
【POJ】2154 Color
GCD(n,i)个的原因:【POJ】2409 Let it
Bead
由于n达到十亿,显然不能枚举。但是可以发现,GCD(n,i)即n约数的个数很少。
·
2015-11-08 17:30
color
【POJ】2409 Let it
Bead
题意:用k种颜色对n个珠子构成的环上色,旋转翻转后相同的只算一种,求不等价的着色方案数。 Burnside定理的应用: 当n为奇数时,有n种翻转,每种翻转都是以一个顶点和该顶点对边的中点对称。有k^(n/2+1)*n种。 当n为偶数时,有n种翻转,其中一半是以两个对应顶点,另一半是以两条对边对称。有k^(n/2+1)*n/2+k^(n/2)*n/2种。 考虑旋转:枚举旋转角度360/n*i
·
2015-11-08 17:29
poj
POJ burnside&&polya整理练习
POJ 2409 Let it
Bead
这题就是polya公式的直接套用,唯一麻烦的是置换群的种类数,由于可以翻转,所以除了要加上pow(c,gcd(s,i))这些平面旋转的置换群
·
2015-11-08 14:53
ide
POJ 2409 Let it
Bead
(polay计数)
题目链接:http://poj.org/problem?id=2409 题意:给出一个长度为m的项链,每个珠子可以用n种颜色涂色。翻转和旋转后相同的算作一种。有多少种不同的项链? 思路: (1) 对于Burnside引理,G为所有置换集合,|G|为所有置换个数,gi为第i种置换,D(gi)为在第i种置换下保持不动的元素个数。 对于Polay定理,G为所有置换集合,|G|为所有置换个数
·
2015-11-08 11:28
poj
POJ 2409 Let it
Bead
(Polya定理)
题意 用k种颜色对n个珠子构成的环上色,旋转翻转后相同的只算一种,求不等价的着色方案数。 思路 Polya定理 X是对象集合{1, 2, ……, n}, 设G是X上的置换群,用M种颜色染N种对象,则不同的染色方案数为: λ(g)表示置换g的轮换个数,且λ(g) = λ1(g) + λn(g) + …… + λn(g),其中λi(g)表示g中长
·
2015-11-03 22:07
poj
POJ 2409 Let it
Bead
(Polya定理)
题意 用k种颜色对n个珠子构成的环上色,旋转翻转后相同的只算一种,求不等价的着色方案数。 思路 Polya定理 X是对象集合{1, 2, ……, n}, 设G是X上的置换群,用M种颜色染N种对象,则不同的染色方案数为: λ(g)表示置换g的轮换个数,且λ(g) = λ1(g) + λn(g) + …… + λn(g),其中λi(g)表示g中长
·
2015-11-03 22:06
poj
Let it
Bead
http://poj.org/problem?id=2409 // File Name: poj2409.cpp // Author: bo_jwolf // Created Time: 2013年10月08日 星期二 14:31:08 #include<vector> #include<list> #include<map>
·
2015-11-02 19:17
it
poj 1286 Necklace of Beads poj 2409 Let it
Bead
HDU 3923 Invoker <组合数学>
链接:http://poj.org/problem?id=1286 http://poj.org/problem?id=2409 1 #include <cstdio> 2 #include <iostream> 3 #include <cstring> 4 #include <cmath> 5 #include <
·
2015-11-02 16:39
poj
POJ 1975 Median Weight
Bead
Median Weight
Bead
Time Limit: 1000ms Memory Limit: 30000KB This problem will be judged on
·
2015-11-01 11:15
media
POJ 2409 Let it
Bead
POJ_2409 这个题目和POJ_1286很像,拿来练一下刚学的polya定理。 #include<stdio.h>#include<string.h>#define MAXD 35long long int elem[MAXD];int C, S;long long int getpow(int i){ if(elem[
·
2015-10-31 14:47
poj
数论、组合数学
*简单题:(直接用套公式就可以了) pku2409 Let it
Bead
&
·
2015-10-31 09:18
数学
经典排序算法 - 珠排序
Bead
Sort
经典排序算法 - 珠排序
Bead
Sort 珠排序非常另类[地精也很另类],看完你就知道了,先介绍思路,再分解过程 这是它的英文论文 http://www.cs.auckland.ac.nz/~jaru003
·
2015-10-31 08:03
sort
POJ 1975 Median Weight
Bead
(Floyd)
Median Weight
Bead
Time Limit: 1000MS Memory Limit: 30000K Total Submissions
·
2015-10-30 15:36
floyd
poj 2409 Let it
Bead
Polya计数
旋转能够分为n种置换,相应的循环个数各自是gcd(n,i),个i=0时不动,有n个 翻转分为奇偶讨论,奇数时有n种置换,每种有n/2+1个 偶数时有n种置换,一半是n/2+1个,一半是n/2个 啃论文,PPT,各种书好久才看懂Polya定理,近期做数学题做的严重怀疑自己的智商。 #include <iostream> #include <cstdio> #inc
·
2015-10-30 14:27
poj
什么是磁珠(Ferrite
Bead
即 FB)
磁珠有很高的电阻率和磁导率,他等效于电阻和电感串联,但电阻值和电感值都随频率变化。 他比普通的电感有更好的高频滤波特性,在高频时呈现阻性,所以能在相当宽的频率范围内保持较高的阻抗,从而提高调频滤波效果。 作为电源滤波,可以使用电感。磁珠的电路符号就是电感但是型号上可以看出使用的是磁珠在电路功能上,磁珠和电感是原理相同的,只是频率特性不同罢了 磁珠由氧磁体组成,电感由磁心和线圈组成,磁珠把交流信号转
·
2015-10-21 10:27
it
USACO 1.1 Broken Necklace (DP动态规划)
(b)) intnumOfBeads; intnumOfDoubleBeads; charnecklace[LEN_NECKLACE*2+1]; //beadsCollectedForward[
bead
tiutiu2011
·
2015-09-09 21:00
dp
动态规划
USACO
1.1
Broken
Necklace
POJ 2409 Let it
Bead
题解《挑战程序设计竞赛》
POJ2409LetitBead 乞巧珠:喜迎佳节,公司决定生产一种独一无二的节日限定手镯卖给单身狗们。这种独特的手镯由c色共s个珠子串成,无论是旋转还是翻转都不会与别人相同,蕴含着single、unique的美好祝愿。公司将手镯的设计任务交给正在加班的你,问一共可以设计多少种手镯?4.1更加复杂的数学问题 计数 依然是是裸的Pólya定理,将《POJ1286NecklaceofBeads》的代码
hankcs
·
2015-08-20 19:00
poj2409--Let it
Bead
(置换群+polya奇数)
题目链接:点击打开链接题目大意:给出m种颜色的小球,现在要求用n个串成一个环,经过旋转翻转后,能形成多少个不同的环。参考:点击打开链接#include #include #include #include usingnamespacestd; #defineLL__int64 LLgcd(LLa,LLb){ returnb==0?a:gcd(b,a%b); } LLpow(LLx,LLk){ if
u013015642
·
2015-07-28 10:00
poj 2409 Let it
Bead
【poyla计数 打表】
LetitBeadTimeLimit:1000MS MemoryLimit:65536KTotalSubmissions:4885 Accepted:3229Description"LetitBead"companyislocatedupstairsat700CanneryRowinMonterey,CA.Asyoucandeducefromthecompanyname,theirbusiness
chenzhenyu123456
·
2015-06-14 22:00
POJ 2409 Let it
Bead
(polya计数,burnside染色)
Description"LetitBead"companyislocatedupstairsat700CanneryRowinMonterey,CA.Asyoucandeducefromthecompanyname,theirbusinessisbeads.TheirPRdepartmentfoundoutthatcustomersareinterestedinbuyingcoloredbrace
Misdom_Tian_Ya
·
2015-05-04 10:00
POJ1975:Median Weight
Bead
(FLOYD)
DescriptionThereareNbeadswhichofthesameshapeandsize,butwithdifferentweights.Nisanoddnumberandthebeadsarelabeledas1,2,...,N.Yourtaskistofindthebeadwhoseweightismedian(the((N+1)/2)thamongallbeads).Thefo
libin56842
·
2015-04-28 20:00
poj
Android -- 启动模式(标准启动模式)
看下图,taskID=15,实例*89270结尾再点击刷新按钮,如下图,发现taskID没有变,但是实例变了*
bead
0在刷新一次,同上,实例变成*d0348。
u010926176
·
2015-04-16 11:00
模式
android
poj 2409 Let it
Bead
(polya)
#include #include #include #include #include #include #include #include #include #defineB(x)(1a)a=b;} voidcmin(int&a,intb){if(ba)a=b;} voidcmin(ll&a,llb){if(b>=1; } returnans; } intgcd(inta,intb){ re
My_ACM_Dream
·
2015-04-12 10:00
NYOJ 280 LK的项链 &&POJ 2409 Let it
Bead
(polya 定理)
NYOJ280LK的项链 :clickherePOJ2409LetitBead:clickhere题意:一盒有红、蓝、绿三种颜色的珠子,每种颜色珠子的个数都大于24,现在LK想用这一盒珠子穿出一条项链,项链上的珠子个数为n(0 #include #include #include #include #include usingnamespacestd; intgcd(inta,intb) { re
u013050857
·
2015-02-15 10:00
ACM
Polya
POJ 2409 Let it
Bead
(Polya计数)
LetitBeadTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 4434 Accepted: 2916Description"LetitBead"companyislocatedupstairsat700CanneryRowinMonterey,CA.Asyoucandeducefromthecompanyname,theirbusi
u013007900
·
2015-01-29 22:00
POJ 2409 Let it
Bead
Pólya定理
题目大意:给定一个n个点的环,可以旋转和翻转,要求涂上c种不同的颜色,问等价类数目首先我们不考虑翻转假设一次旋转k个位置那么循环个数显然是Gcd(n,i)现在考虑翻转易知所有的置换都可以由【沿着某个固定的对称轴翻转】和【旋转】两步组成观察一个环比如我们将对称轴设定为1号节点与圆心的连线一次旋转k个位置那么每次置换x会被换到((n+2)-x+k-1)%n+1的位置我们会发现置换两次之后x就回到了原位
PoPoQQQ
·
2015-01-21 14:00
poj
polya定理
群论
POJ2409
Selenium在使用中的一些常用方法
blog.csdn.net/bwgang/article/details/7902526总结SeleniumWebDriver中一些鼠标和键盘事件的使用:http://www.wxphp.com/wxd-1ec7e6
bead
51f01dc381f10c
测试小松鼠
·
2014-11-17 11:00
POJ 2409 Let it
Bead
这个题和POJ1286是一个题,只不过那是一个颜色数量固定的题而这个不固定。这是链接:POJ1286NecklaceofBeads 下面是代码:#include #include #include #include #include #include #include #include #include #include #include #defineclear(A,X,SIZE)memset(
lin375691011
·
2014-07-25 16:00
数学
poj
刷题
[ACM] POJ 2409 Let it
Bead
(Polya计数)
LetitBeadTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 4434 Accepted: 2916Description"LetitBead"companyislocatedupstairsat700CanneryRowinMonterey,CA.Asyoucandeducefromthecompanyname,theirbusi
sr19930829
·
2014-07-25 09:00
ACM
组合数学
Polya计数
poj 2409 Let it
Bead
Polya计数
旋转可以分为n种置换,对应的循环个数分别是gcd(n,i),个i=0时不动,有n个翻转分为奇偶讨论,奇数时有n种置换,每种有n/2+1个偶数时有n种置换,一半是n/2+1个,一半是n/2个啃论文,PPT,各种书好久才看懂Polya定理,最近做数学题做的严重怀疑自己的智商。#include #include #include #include #include #include usingnames
t1019256391
·
2014-07-05 20:00
poj 1286 Necklace of Beads & poj 2409 Let it
Bead
(初涉polya定理)
http://poj.org/problem?id=1286题意:有红、绿、蓝三种颜色的n个珠子,要把它们构成一个项链,问有多少种不同的方法。旋转和翻转后相同的属于同一种方法。polya计数。搜了一篇论文Pólya原理及其应用看了看polya到底是什么东东,它主要计算全部互异的组合的个数。对置换群还是似懂略懂。用polya定理解决问题的关键是找出置换群的个数及哪些置换群,每种置换的循环节数。像这种
u013081425
·
2014-06-07 18:00
数学
polya定理
POJ 2409 Let it
Bead
Polya定理
点击打开链接LetitBeadTimeLimit:1000MSMemoryLimit:65536KTotalSubmissions:4210Accepted:2761Description"LetitBead"companyislocatedupstairsat700CanneryRowinMonterey,CA.Asyoucandeducefromthecompanyname,theirbusi
ACBoy_lhc
·
2014-02-10 11:08
数学
Let it
Bead
http://poj.org/problem?id=2409//FileName:poj2409.cpp //Author:bo_jwolf //CreatedTime:2013年10月08日星期二14:31:08 #include #include #include #include #include #include #include #include #include #include #
liujie619406439
·
2013-10-08 15:00
Polya
POJ 2409 Let it
Bead
组合数学
题目地址: http://poj.org/problem?id=2409给你一串珠子有m个,用n种不同的颜色涂色,问有多少种分法。用polay定理求解,对于排成一排的带编号的小球,按照某一种方案改变其中一些球的放置顺序,可以称之为置换。每一种置换方法可以用两排数字來表示,第一排数字和第二排数字一一对应,第一排数字表示小球的原来位置(1~n),第二排数字表示小球交换后的位置。现在我们有n个小球,m种
·
2013-07-03 21:00
poj
USACO 1.1.4 Broken Necklace
include #include usingnamespacestd; chars[750]; intmain() { freopen("beads.in","r",stdin); freopen("
bead
zkzxmzk
·
2013-05-03 21:00
ACM
水题
phonics-3
Directions: Say each picture name, If the picture name begins with the same sound as hand, color the
bead
kerlubasola
·
2012-06-06 11:00
on
poj1975 Median Weight
Bead
----floyd 传递闭包
/* poj1975MedianWeightBead 题意:有N个珠子,N为奇数(anoddnumber),给出一些信息如ab表示a比b重, 通过这些信息可以分析出那些珠子按重量排序后,哪个不可能是中间那个,求可以分析出几个。 用到的是floyd求传递闭包,然后找到那些入度或出度大于n/2的珠子即可 */ #include #include intg[100][100];//g[i][j]表示j
qq172108805
·
2012-03-15 20:00
POJ1975 Median Weight
Bead
[Floyd]
题意:给定一个奇数n,和m组两数之间的关系。问可以排除多少个可以确定非中位数的数。思路:floyd传递闭包。一次AC。有点太水了这题。#include #include #definemax(a,b)(a>b?a:b) #defineabs(a)((a)>0?(a):-(a)) #definemin(a,b)(a0) { posi++; } elseif(mat[i][j]) { neg++; }
wuyanyi
·
2012-01-28 12:00
Acunetix Web Vulnerability Scanner 8.x.x 逆向
.004050D80055BEA6|.7518jnzshortActivati.0055BEC00055BEA8|.BA48C65500movedx,Activati.0055C648;EnterpriseEdition0055
BEAD
wordman
·
2011-12-29 16:01
职场
休闲
顾问
企业版
Acunetix Web Vulnerability Scanner 8.x.x 逆向
.004050D80055BEA6|.7518jnzshortActivati.0055BEC00055BEA8|.BA48C65500movedx,Activati.0055C648;EnterpriseEdition0055
BEAD
wordman
·
2011-12-29 16:01
职场
企业版
休闲
安全文章
Let it
Bead
LetitBeadGrade:10/Discount:0.8TimeLimit:1000MSMemoryLimit:65536KDescription"LetitBead"companyislocatedupstairsat700CanneryRowinMonterey,CA.Asyoucandeducefromthecompanyname,theirbusinessisbeads.TheirP
jj12345jj198999
·
2011-07-09 10:00
c
search
input
each
output
colors
Let it
Bead
,POJ 2409
LetitBead,POJ2409LetitBeadTimeLimit:1000MSMemoryLimit:65536KTotalSubmissions:2318Accepted:1448Description"LetitBead"companyislocatedupstairsat700CanneryRowinMonterey,CA.Asyoucandeducefromthecompanynam
coreBugZJ
·
2011-04-17 22:00
上一页
1
2
3
下一页
按字母分类:
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
其他