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
fzu
FZU
-2182 水题
FZU
-2182水题题目链接题意:只判断第一个单词的长度strlen(),再处理#include"iostream" #include"cstdio" #include"cstring" usingnamespacestd
no_alternantive
·
2016-04-24 09:00
水
FZU
ACM--贪心--
FZU
--2111--Min Number
FZU
题目地址:http://acm.
fzu
.edu.cn/problem.php?
qq_26891045
·
2016-04-23 22:00
ACM
number
min
贪心
FZU
2111
FZU
1759 Super A^B mod C (欧拉函数,快速幂,降幂公式)
题目链接:http://acm.
fzu
.edu.cn/problem.php?pid=1759一道吓人的题。。不禁再次感叹数学真伟大,使用下面的降幂公式很简单就写出来了。
Strokess
·
2016-04-23 20:00
FZU
2150 Fire Game
Problem2150FireGameAccept:1344 Submit:4753TimeLimit:1000mSec MemoryLimit:32768KBProblemDescriptionFatbrotherandMazeareplayingakindofspecial(hentai)gameonanN*Mboard(Nrows,Mcolumns).Atthebeginning
chen_ze_hua
·
2016-04-23 11:00
友谊赛的题目(
FZU
2212)(
FZU
2213)(
FZU
2214)
FZU
2212 ProblemASuperMobileChargerAccept:217 Submit:402TimeLimit:1000mSec MemoryLimit:32768KB
huatian5
·
2016-04-21 22:00
学习
FZU
fzu
2143
#include #include #include #include #include #include #include #include #include typedeflonglongLL; constintMAXN=1010; constintMAXM=10010; constintINF=0x3f3f3f3f; structEdge { intto,next,cap,flow,co
u013491262
·
2016-04-21 18:00
FZU
1894 志愿者选拔【单调队列】【monotone decreasing queue】
Problem1894志愿者选拔Accept:1770 Submit:5523TimeLimit:1500mSec MemoryLimit:32768KB ProblemDescription世博会马上就要开幕了,福州大学组织了一次志愿者选拔活动。参加志愿者选拔的同学们排队接受面试官们的面试。参加面试的同学们按照先来先面试并且先结束的原则接受面试官们的考查。面试中每个人的人品是主要考
mengxiang000000
·
2016-04-21 13:00
FZU
1894
fzu
-2113 Jason的特殊爱好[数位dp]
先进行预处理s[pos][val]s[3][5]表示0~500的1的个数所以s[3][5]+=s[3][4](0~400); s[i][j]+=s[i][j-1];s[3][5]+=s[2][9]+ss[1][9](0~99);for(intk=i-1;k>=1;--k)s[i][j]+=s[k][9];特殊的当j==1时,s[i][j]+=1;当j==2时,s[i][j]+=10^i-1;查询:
a915800048
·
2016-04-21 12:00
数位dp
FZU
1892接水管游戏-BFS加上简单的状态压缩和位运算处理
原题地址:http://acm.
fzu
.edu.cn/problem.php?
Lulu仔
·
2016-04-21 11:29
BFS
FZU
1892接水管游戏-BFS加上简单的状态压缩和位运算处理
原题地址:http://acm.
fzu
.edu.cn/problem.php?
Lulu11235813
·
2016-04-21 11:00
位运算
cc++
广搜
状态压缩
FZU
1891 升降序列
题目:http://acm.hust.edu.cn/vjudge/contest/view.action?cid=110981#problem/C代码:#include #include #include usingnamespacestd; intmain() { intt; scanf("%d",&t); while(t--) { intn; scanf("%d",&n); inta[5
qq_32473657
·
2016-04-21 00:00
FZU
1890 竞技游戏
题目:http://acm.hust.edu.cn/vjudge/contest/view.action?cid=110981#overview代码:#include #include #include usingnamespacestd; intmain() { intt; scanf("%d",&t); while(t--) { intn,m; scanf("%d%d",&n,&m);
qq_32473657
·
2016-04-21 00:00
FZU
1889 龟兔赛跑
题目:http://acm.hust.edu.cn/vjudge/contest/view.action?cid=110981#problem/A代码:#include #include usingnamespacestd; intmain() { intt; scanf("%d",&t); while(t--) { intt,k,u,v; scanf("%d%d%d%d",&t,&k,&u
qq_32473657
·
2016-04-21 00:00
fzu
1896 神奇的魔法数字(数位dp)
数位dp就不讲了,网上一搜一大把(才不是因为我懒呢)。依旧是状态的定义。。。。dp[i][j]表示前i位最高位是j的神奇的魔法数的个数。cnt一个a,b+1的神奇的魔法数的个数就对了。(左闭右开)这里是代码:#include#include#include#include#include#includeusingnamespacestd;intdp[15][15];intm;voidinit(){
LTSC
·
2016-04-20 23:28
「ac妹」dp
fzu
1894 志愿者选拔(单调队列)
边输入边维护,G->出队,Q->output。弱鸡代码:#include#include#include#includeusingnamespacestd;#definemaxn1000010intrp[maxn],rm[maxn];intmain(){charop[5],na[10];intt;scanf("%d",&t);while(t--){intx=0,y=-1;intcnt=0,ans=
LTSC
·
2016-04-20 23:46
队列
fzu
2223
#include #include #include #include #include #include #include typedeflonglongLL; namespaceMyMap{ conststaticintMOD=1000007; inthead[MOD]; LLval[MOD]; intnext[MOD]; intto[MOD]; intsize; voidclear(
u013491262
·
2016-04-20 16:00
FZU
2143 Board Game
题意思路:见这个,写的很详细了,题解,主要难在建图和流量大于等于0的时候就停止增广#include #include #include #include #include usingnamespacestd; #defineLLlonglong constintmaxn=2005; #defineINF1e9 structEdge { intfrom,to,cap,flow,cost; Edge(
qq_21057881
·
2016-04-19 22:00
FZU
2140 Forever 0.5
思路:队友做的..听说是迷之画一个圆和个三角形...确定四个点其他就随便了#include #include #include #include #include #include #include #include #include #include #include #include #defineex1e-9 usingnamespacestd; constintmaxn=100+10; s
qq_21057881
·
2016-04-19 22:00
FZU
2144 Shooting Game
思路:把球体方程和直线方程联立解出来交点的值作为区间,那么就变成最多区间覆盖的问题了#include #include #include #include #include usingnamespacestd; #defineLL__int64 constintmaxn=1000005; structNode { doubles,t; }nodes[maxn]; boolcmp(Nodea,Nod
qq_21057881
·
2016-04-19 22:00
FZU
2146 Easy Game
思路:水题#include #include #include #include #include #include #include #include #include #include #include #include usingnamespacestd; intmain() { //freopen("in.txt","r",stdin); //freopen("out.txt","w",
qq_21057881
·
2016-04-19 21:00
FZU
2147 A-B Game
思路:水题#include #include usingnamespacestd; #defineLL__int64 intmain() { intcas=1; intT; scanf("%d",&T); while(T--) { LLa,b; scanf("%I64d%I64d",&a,&b); LLans=0; while(a>b) { a=a/2+1; ans++; } printf("Ca
qq_21057881
·
2016-04-19 21:00
FZU
2148 Moon Game
题意:给定n个点,问选4个点能组成凸四边形的个数思路:凸包模板上#include #include #include #include #include #include #include #include #include #include #include #include #defineN100000 #defineLLlonglong #defineUunsigned usingnames
qq_21057881
·
2016-04-19 21:00
FZU
2151 OOXX Game
思路:水题#include #include #include usingnamespacestd; constintmaxn=120; charmm[maxn][maxn]; intmain() { intn,m,t; intcas=1; scanf("%d",&t); while(t--) { intk=0; scanf("%d%d",&n,&m); for(inti=0;i
qq_21057881
·
2016-04-19 21:00
FZU
2171 防守阵地 II(线段树区间更新【lazy标记】)
ProblemDescription部队中总共有N个士兵,每个士兵有各自的能力指数Xi,在一次演练中,指挥部确定了M个需要防守的地点,指挥部将选择M个士兵依次进入指定地点进行防守任务,获得的参考指数即为M个士兵的能力之和。随着时间的推移,指挥部将下达Q个指令来替换M个进行防守的士兵们,每个参加完防守任务的士兵由于疲惫等原因能力指数将下降1。现在士兵们排成一排,请你计算出每次进行防守的士兵的参考指数
qq_32866009
·
2016-04-19 21:00
FZU
FZU
1914 Funny Positive Sequence
题目链接:http://acm.
fzu
.edu.cn/problem.php?
csdn364988181
·
2016-04-19 19:00
ACM
fzu
2226
#include #include #include #include #include #include #include #include typedeflonglongLL; std::vectorid[1001]; std::vector>askL,askR; intleastLeft[10008],leastRight[10008]; intres[10008]; intmain()
u013491262
·
2016-04-19 16:00
fzu
2218
dp[t]表示t状态所有子集的最大长度#include #include #include #include #include #include #include #include typedeflonglongLL; constintN=2008; charword[N]; intdp[(1<<16)+8]; intmain(){ std::ios::sync_with_stdio(fals
u013491262
·
2016-04-19 14:00
FZU
2216
#include #include #include #include #include #include #include #include typedeflonglongLL; std::vectorstone; intmain(){ intt,limit,x,n,m,L,R,used,unUsed; scanf("%d",&t); while(t--){ limit=0; stone.c
u013491262
·
2016-04-19 13:00
FZU
Problem 2227 邮票 (离散化+map+dfs)
大意:给定n对点,每对是无向图。然后就是输出字典序最小的序列。点的范围为0~1e9.有10^5个。思路:这题需要离散化加去重,我们可以把每个点的编号映射成1~n的编号。那么就需要用map1处理一下,然而需要讲点输出所以在用个map2从新编号映射到原来的节点号。#include #include #include #include #include #include #include #includ
Grit_ICPC
·
2016-04-19 11:00
map
离散化
FZU
-2214-Knapsack problem【01背包】
**Knapsackproblem**ProblemDescriptionGivenasetofnitems,eachwithaweightw[i]andavaluev[i],determineawaytochoosetheitemsintoaknapsacksothatthetotalweightislessthanorequaltoagivenlimitBandthetotalvalueisa
loy_184548
·
2016-04-17 22:00
dp
FZU
2214
FZU
2226 信心题
ProblemDescription给定一个含有n个数字的数列,每个数字都有一个值a[i](下标从1开始)。定义第i个数字和第j个数字间的距离dis(i,j)=abs(i-j)。接下来给出q个询问,每次询问一个区间[l,r],要求求出一对数字(i,j)(l #include #include #include #include #include #include #include #include
jtjy568805874
·
2016-04-17 19:00
FZU
FZU
2135 数字游戏(思维题)
ProblemDescription给一个N位的正整数,该数不包含前导0,先让你调整其中每个数字的位置,得到另一个n位的数,并且使得这个数越小越好,而且这个数不能包含前导0。比如543210可以变成102345,而12345保持不变才是最优结果。Input第一行一个整数T(T #include #include usingnamespacestd; charstr[105]; inta[10];
qq_32866009
·
2016-04-17 16:00
FZU
ACM--数学几何--2140 Forever 0.5--水
OJ地址:http://acm.
fzu
.edu.cn/problem.php?
qq_26891045
·
2016-04-16 20:00
ACM
水
forever
0.5
2140
数学几何
ACM--贪心--数学--A-B Game--水
OJ地址:http://acm.
fzu
.edu.cn/problem.php?
学霸的一天
·
2016-04-16 20:17
ACM数学几何
ACM水题
ACM刷题录
ACM--贪心--数学--A-B Game--水
OJ地址:http://acm.
fzu
.edu.cn/problem.php?
qq_26891045
·
2016-04-16 20:00
数学
ACM
game
水题
贪心
a-b
Fzu
2227
#include #include #include #include #include #include #include std::vectornum; std::mapId; constintN=100008; intu[N],v[N],stk[N*2],top; std::vector>g[N]; boolmark[N*2]; voiddfs(intnow){ for(std::vec
u013491262
·
2016-04-16 17:00
FZU
2214 Knapsack problem【DP】【超大容量背包】
题目链接http://acm.
fzu
.edu.cn/problem.php?pid=2214思路咋一看是个01背包问题,但背包容量很大,有109,数组肯定开不下,所以要换种思路。
wlx65003
·
2016-04-16 15:00
dp
ACM
背包
FZU
Moon Game(几何)
Accept:710 Submit:2038TimeLimit:1000mSec MemoryLimit:32768KB ProblemDescriptionFatbrotherandMazeareplayingakindofspecial(hentai)gameintheclearlyblueskywhichwecanjustconsiderasakindoftwo-dimensio
Dacc123
·
2016-04-16 10:00
几何
game
Moon
FZU
FZU
2150 Fire Game(BFS)
Problem2150FireGameAccept:1302 Submit:4569TimeLimit:1000mSec MemoryLimit:32768KB ProblemDescriptionFatbrotherandMazeareplayingakindofspecial(hentai)gameonanN*Mboard(Nrows,Mcolumns).Atthebeginnin
Dacc123
·
2016-04-16 10:00
game
bfs
fire
FZU
2150
FZU
2144 Shooting Game (贪心区域划分)
Problem2144ShootingGameAccept:370Submit:1902TimeLimit:1000mSecMemoryLimit:32768KBProblemDescriptionFatbrotherandMazeareplayingakindofspecial(hentai)gameintheplayground.(Maybeit’stheOOXXgamewhichdecryp
Dacc123
·
2016-04-16 10:00
FZU-2144
FZU
2140 Forever 0.5(找规律,几何)
Problem2140Forever0.5Accept:371Submit:1307SpecialJudgeTimeLimit:1000mSecMemoryLimit:32768KBProblemDescriptionGivenanintegerN,yourtaskistojudgewhetherthereexistNpointsintheplanesuchthatsatisfythefollow
Dacc123
·
2016-04-16 10:00
几何
FZU-2140
FZU
2143 Board Game 【费用流+棋盘模型】
#include #include #include #include #include usingnamespacestd; constintN=100; constintinf=0x7fffffff; structEdge { intfrom,to,cap,flow,cost; }; vectoredges; vectorG[N]; intn,m; intinq[N],p[N],d[N],a[
xinag578
·
2016-04-15 20:00
FZU
2093 寻找兔子 (状压dp)
题目链接:http://acm.
fzu
.edu.cn/problem.php?
csdn364988181
·
2016-04-15 17:00
dp
ACM
FZU
-2218-Simple String Problem【状态压缩dp】
2218-SimpleStringProblemProblemDescriptionRecently,youhavefoundyourinterestinstringtheory.Hereisaninterestingquestionaboutstrings.YouaregivenastringSoflengthnconsistingofthefirstklowercaseletters.Youa
loy_184548
·
2016-04-15 09:00
压缩
String
dp
FZU
2135---数字游戏
数字游戏TimeLimit:1000MS MemoryLimit:32768KB 64bitIOFormat:%I64d&%I64uSubmit Status Practice
FZU
2135Description
Inite
·
2016-04-15 00:00
FZU
2150 Fire Game
DescriptionFatbrotherandMazeareplayingakindofspecial(hentai)gameonanN*Mboard(Nrows,Mcolumns).Atthebeginning,eachgridofthisboardisconsistingofgrassorjustemptyandthentheystarttofireallthegrass.Firstlyth
jtjy568805874
·
2016-04-14 21:00
FZU
FZU
2141 Sub-Bipartite Graph
DescriptionGivenasimpleundirectedgraphGwithnverticesandmedges,yourtaskistoselectasub-bipartitegraphofGwithatleastm/2edges.Inthemathematicalfieldofgraphtheory,abipartitegraph(orbigraph)isagraphwhosever
jtjy568805874
·
2016-04-14 21:00
FZU
FZU
2140 Forever 0.5
DescriptionGivenanintegerN,yourtaskistojudgewhetherthereexistNpointsintheplanesuchthatsatisfythefollowingconditions:1.Thedistancebetweenanytwopointsisnogreaterthan1.0.2.Thedistancebetweenanypointandth
jtjy568805874
·
2016-04-14 21:00
FZU
FZU
2215 Simple Polynomial Problem【模拟】【表达式计算】
题目链接http://acm.
fzu
.edu.cn/problem.php?pid=2215思路题意就是叫你把给你的多项式化到最简,输出各项系数。
wlx65003
·
2016-04-14 19:00
栈
ACM
表达式计算
表达式树+多项式模拟
fzu
2215 Simple Polynomial Problem
传送门:点击打开链接题意:化简多项式。思路:先写个结构体,把多项式的乘法和加法重载好。然后直接套后缀表达式啊,或者表达式树啊,或者用栈写表达式解析啊,都是随意的下面这个是表达式树的写法。有一个要注意的地方是,在函数里面开数组,也是属于栈的空间,所以用G++提交的时候,要注意一下扩栈。#include #include #include #include #include #include #inc
qwb492859377
·
2016-04-14 18:00
上一页
15
16
17
18
19
20
21
22
下一页
按字母分类:
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
其他