topcoder srm 701 div1 -3
1、一堆石子有$n$个,Alice,Bob轮流拿,给定每个人每次可以拿的石子的数目的集合。谁先不能拿谁输。问谁能赢?
思路:对于先手来说,输赢的局面一定是从某个数字开始呈循环状态。所以找到这个循环开始的位置和循环的长度就能判断$n$是不是赢的局面。
#include <string.h>
#include <stdio.h>
#include <vector>
#include <string>
#include <set>
#include <algorithm>
#include <map>
using namespace std; const int N=666; int f[N],g[N];
vector<int> A,B; int dfs1(int x);
int dfs2(int x); int dfs2(int x) {
if(g[x]!=-1) return g[x];
if(B.size()==0||x<B[0]) return g[x]=0;
for(int i=0;i<(int)B.size();++i) {
if(x>=B[i]&&!dfs1(x-B[i])) {
return g[x]=1;
}
}
return g[x]=0;
} int dfs1(int x) {
if(f[x]!=-1) return f[x];
if(A.size()==0||x<A[0]) return 0;
for(int i=0;i<(int)A.size();++i) {
if(x>=A[i]&&!dfs2(x-A[i])) {
return f[x]=1;
}
}
return f[x]=0;
} int check(int L,int s) {
int s1=s;
int s2=s+L;
int s3=s+L*2;
for(int i=0;i<L;++i) {
if(f[s1+i]!=f[s2+i]||f[s1+i]!=f[s3+i]) return 0;
}
return 1;
} class PartisanGame { public:
string getWinner(int n,vector<int> a,vector<int> b) {
memset(f,-1,sizeof(f));
memset(g,-1,sizeof(g));
A=a;
B=b;
sort(A.begin(),A.end());
sort(B.begin(),B.end());
for(int i=0;i<N;++i)
{
f[i]=dfs1(i);
}
if(n<N) {
if(f[n]) return "Alice";
return "Bob";
}
for(int L=50;L<N/3;++L) {
for(int i=1;i+L+L+L<N;++i) {
if(check(L,i)) {
if(f[i+(n-i)%L]) return "Alice";
return "Bob";
}
}
}
} };
2、给定一个长度为$m$的字符串$s$,按照如下的算法产生一个包含$2^{m}$个串的集合$collection$。将这个集合的字符串排序。输出第$k$个字符串。
start with an empty collection
for each subset X of the set {1,2,...,m}:
take a new string t and initialize it to the given string s
for i = 1,2,...,m:
if X contains i:
reverse the last i characters of t
add the string t to the collection
思路:对于一个最终的串$result[0~m-1]$来说,$s$的每个字符要么放在当前$result$的开头,要么放在结尾。即令$L=0,R=m-1$,那么:
for each c from s[0] to s[m-1],
1 result[L++]=c;
2 result[R--]=c
只能二选一。这种构造等同于上面反转最后若干字符的构造方法。设$s$='123456',1在前,2在后,3在前,4在后,5在前,6在前,那么最后的串为'135642',这对应上面的 $X$集合为${2,3,4,5}$。这样可以用$n^{2}$的方法判断最后的答案有前缀$p$的方案数。$f[i][j]$表示处理完了$s$的前$i$个字符其中$j$个选择了操作1,即放在前面的方案数。
#include <string.h>
#include <stdio.h>
#include <vector>
#include <string>
#include <set>
#include <algorithm>
#include <map>
using namespace std; const int N=55; long long f[N][N]; long long cal(string s,string p) {
memset(f,0,sizeof(f));
f[0][0]=1;
int n=(int)s.size();
int m=(int)p.size();
for(int i=0;i<n;++i) {
for(int j=0;j<=i;++j) {
if(j>=m||s[i]==p[j]) f[i+1][j+1]+=f[i][j];
int r=n-1-(i-j);
if(r>=m||s[i]==p[r]) f[i+1][j]+=f[i][j];
}
}
long long ans=0;
for(int i=0;i<=n;++i) ans+=f[n][i];
return ans;
} class KthStringAgain { public:
string getKth(string s,long long k) {
int n=(int)s.size();
string ans="";
for(int i=0;i<n;++i) {
for(char c='a';c<='z';++c) {
long long tmp=cal(s,ans+c);
if(tmp<k) {
k-=tmp;
}
else {
ans+=c;
break;
}
}
}
return ans;
} };
topcoder srm 701 div1 -3的更多相关文章
- Topcoder SRM 643 Div1 250<peter_pan>
Topcoder SRM 643 Div1 250 Problem 给一个整数N,再给一个vector<long long>v; N可以表示成若干个素数的乘积,N=p0*p1*p2*... ...
- Topcoder Srm 726 Div1 Hard
Topcoder Srm 726 Div1 Hard 解题思路: 问题可以看做一个二分图,左边一个点向右边一段区间连边,匹配了左边一个点就能获得对应的权值,最大化所得到的权值的和. 然后可以证明一个结 ...
- topcoder srm 714 div1
problem1 link 倒着想.每次添加一个右括号再添加一个左括号,直到还原.那么每次的右括号的选择范围为当前左括号后面的右括号减去后面已经使用的右括号. problem2 link 令$h(x) ...
- topcoder srm 738 div1 FindThePerfectTriangle(枚举)
Problem Statement You are given the ints perimeter and area. Your task is to find a triangle wi ...
- Topcoder SRM 602 div1题解
打卡- Easy(250pts): 题目大意:rating2200及以上和2200以下的颜色是不一样的(我就是属于那个颜色比较菜的),有个人初始rating为X,然后每一场比赛他的rating如果增加 ...
- Topcoder SRM 627 div1 HappyLettersDiv1 : 字符串
Problem Statement The Happy Letter game is played as follows: At the beginning, several players ...
- Topcoder SRM 584 DIV1 600
思路太繁琐了 ,实在不想解释了 代码: #include<iostream> #include<cstdio> #include<string> #include& ...
- TopCoder SRM 605 DIV1
604的题解还没有写出来呢.先上605的. 代码去practice房间找. 说思路. A: 贪心,对于每个类型的正值求和,如果没有正值就取最大值,按着求出的值排序,枚举选多少个类型. B: 很明显是d ...
- topcoder srm 575 div1
problem1 link 如果$k$是先手必胜那么$f(k)=1$否则$f(k)=0$ 通过对前面小的数字的计算可以发现:(1)$f(2k+1)=0$,(2)$f(2^{2k+1})=0$,(3)其 ...
随机推荐
- Koa中使用cookies
错误重现:(使用ctx.cookies.set时报错) 这是因为koa的http的header字符集支持US-ASCII子集的字符集,故设置中文是'utf8'时就会报上面错误 解决方法有两种: 1. ...
- JavaScript-模拟收银台小程序
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8&quo ...
- python subprocess中ssh命令的特殊性
今天尝试使用python 的 subprocess 模块 使用类似如下语句: p=subprocess.Popen(['ssh','root@localhost'],stdout=subprocess ...
- linux降低内存后oracle数据库无法启动
降低了虚拟机的内存之后发现虚拟机中的oracle数据库无法startup,原因是 target memory的数据有问题,然后在安装数据库的使用的是自动内存管理.涉及的一个系统文件 /dev/shm ...
- Yii2 nginx配置伪静态
Yii2 配置 Nginx 伪静态 主要检查以下代码: location / { # Redirect everything that isn't a real file to index.php t ...
- 入坑tensorflow
win10 CPU版,anaconda prompt命令行一句话,pip install --upgrade tensorflow搞定.比caffe好装一万倍. gpu版没装成,首先这个笔记本没装cu ...
- importlib
Python提供了importlib包作为标准库的一部分.目的就是提供Python中import语句的实现(以及__import__函数).另外,importlib允许程序员创建他们自定义的对象,可用 ...
- numpy高级应用
reshape重塑数组 ravel 拉平数组 concatenate 最一般化的连接,沿一条轴连接一组数组 # print(np.concatenate([arr1,arr2],axis = 0)) ...
- numpy高级索引
布尔值索引 name_arr = np.array(["bob","joe","will","bob","jo ...
- 转:C# 对委托的BeginInvoke,EndInvoke 及Control 的BeginInvoke,EndInvoke 的理解
转载自:http://www.cnblogs.com/easyfrog/p/3141269.html using System; using System.Collections.Generic; u ...