上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 48 下一页

Parity game

摘要: "POJ" 题意:给一个01序列,现在随意拿出来一个区间,然后说出区间内含有奇数个1还是偶数个1,因为有可能存在假话,让你判断前多少条没有假话,也就是查找第一个假话的位置 1.序列长度$n include include include include include include include 阅读全文
posted @ 2019-09-30 16:54 PPXppx 阅读(174) 评论(0) 推荐(0) 编辑

[NOI2015]程序自动分析

摘要: "洛咕" 题意:考虑一个约束满足问题的简化版本:假设$x1,x2,x3...$代表程序中出现的变量,给定$n(n include include include include include include include define ll long long using namespace s 阅读全文
posted @ 2019-09-30 15:56 PPXppx 阅读(132) 评论(0) 推荐(0) 编辑

跑路

摘要: 洛咕 题意:小A的工作不仅繁琐,更有苛刻的规定,要求小A每天早上在$6:00$之前到达公司,否则这个月工资清零.可是小A偏偏又有赖床的坏毛病。于是为了保住自己的工资,小A买了一个十分牛B的空间跑路器,每秒钟可以跑$2^k$千米($k$是任意自然数).当然,这个机器是用$longint$存的,所以总跑 阅读全文
posted @ 2019-09-30 15:38 PPXppx 阅读(172) 评论(0) 推荐(0) 编辑

魔法阵

摘要: "洛咕" 题意:大魔法师有$m$个魔法物品,编号分别为$1,2,...,m$。每个物品具有一个魔法值,我们用$X_i$表示编号为i的物品的魔法值。每个魔法值Xi是不超过n的正整数,可能有多个物品的魔法值相同。大魔法师认为,当且仅当四个编号为$a,b,c,d$的魔法物品满足$x_a40 50 55$, 阅读全文
posted @ 2019-09-30 14:54 PPXppx 阅读(239) 评论(0) 推荐(0) 编辑

The XOR Largest Pair

摘要: "LOJ" 题意:在给定的$n$个整数$a_1,a_2,...,a_n$之中选出两个并进行异或运算,得到的最大结果是多少?$n include include include include include include include define ll long long using name 阅读全文
posted @ 2019-09-29 20:38 PPXppx 阅读(159) 评论(0) 推荐(0) 编辑

[POI2010]ANT-Antisymmetry

摘要: "洛咕" 题意:对于一个01字符串,如果将这个字符串0和1取反后,再将整个串反过来和原串一样,就称作“反对称”字符串.比如00001111和010101就是反对称的,1001就不是.现在给出一个长度为N的01字符串,求它有多少个子串是反对称的.$n include include include i 阅读全文
posted @ 2019-09-28 16:38 PPXppx 阅读(153) 评论(0) 推荐(0) 编辑

Seek the Name, Seek the Fame

摘要: "POJ" 题意:给定若干个长度小于等于$400000$的字符串,在每个字符串中求出既是前缀又是后缀的子串长度. 分析:字符串哈希记录前缀值,然后直接枚举长度,分别表示出前缀和后缀的哈希值,并判断是否相等即可. cpp include include include include include 阅读全文
posted @ 2019-09-28 15:07 PPXppx 阅读(264) 评论(0) 推荐(0) 编辑

Power Strings

摘要: "POJ" 题意:给定若干个长度小于等于$1e6$的小写字母字符串,询问每个字符串最多由多少个相同的子串重复连接而成. 分析:字符串哈希记录字符串每一段的值.然后从小到大枚举$n$(设$n$为字符串的长度)的约数,判断每一段约数长度的哈希值是否相等即可. cpp include include in 阅读全文
posted @ 2019-09-28 14:52 PPXppx 阅读(213) 评论(0) 推荐(0) 编辑

Oulipo

摘要: "POJ" 题意:多组数据,给定两个只含大写字母的字符串$S1,S2$,求$S1在$S2$中出现了多少次? 分析:字符串哈希模板题,我写了双哈希,好像一个就够了. cpp include include include include include include include include 阅读全文
posted @ 2019-09-28 14:34 PPXppx 阅读(219) 评论(0) 推荐(0) 编辑

Muddy Fields

摘要: "POJ" 题意:在一块$n m$的网格状地面上,有一些格子是泥泞的,其它格子是干净的.现在需要用一些宽度为1,长度任意的木板把泥地盖住,同时不能盖住干净的地面,木板可以重叠,求最少需要多少块木板.$n,m include include include include include includ 阅读全文
posted @ 2019-09-28 09:55 PPXppx 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 48 下一页