BestCoder Round #77
计算组合数然后多重集排列乱搞,注意判无解情况(TM我就判错然后FST了)。
#include<cstdio>
#include<cstring>
#include<cctype>
#include<algorithm>
#define rep(i,s,t) for(int i=s;i<=t;i++)
#define dwn(i,s,t) for(int i=s;i>=t;i--)
using namespace std;
inline int read() {
int x=0,f=1;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=-1;
for(;isdigit(c);c=getchar()) x=x*10+c-'0';
return x*f;
}
typedef long long ll;
const int maxn=1010;
const int mod=1000000007;
int n,c[26];
char s[maxn];
ll C[maxn][maxn];
void solve() {
memset(c,0,sizeof(c));
scanf("%s",s+1);n=strlen(s+1);
rep(i,1,n) c[s[i]-'a']++;
int sum=0;
rep(i,0,25) {
if(c[i]&1) sum++,c[i]--;
c[i]>>=1;
}
if(sum>1) {puts("0");return;}
ll ans=1;int cur=0;
rep(i,0,25) {
cur+=c[i];
(ans*=C[cur][c[i]])%=mod;
}
printf("%I64d\n",ans);
}
int main() {
C[0][0]=1;
rep(i,1,1000) {
C[i][0]=C[i][i]=1;
rep(j,1,i-1) C[i][j]=(C[i-1][j-1]+C[i-1][j])%mod;
}
dwn(T,read(),1) solve();
return 0;
}
转化成对偶图然后统计八连块联通性。
#include<cstdio>
#include<cstring>
#include<cctype>
#include<algorithm>
#define rep(i,s,t) for(int i=s;i<=t;i++)
#define dwn(i,s,t) for(int i=s;i>=t;i--)
using namespace std;
inline int read() {
int x=0,f=1;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=-1;
for(;isdigit(c);c=getchar()) x=x*10+c-'0';
return x*f;
}
typedef long long ll;
const int mx[]={0,0,1,-1,1,-1,1,-1};
const int my[]={1,-1,0,0,1,1,-1,-1};
const int maxn=510;
int pa[maxn*maxn],n,m;
int id(int i,int j) {return (i-1)*m+j;}
char s[maxn];
int findset(int x) {return pa[x]==x?x:pa[x]=findset(pa[x]);}
void Add(int x,int y) {
pa[id(x,y)]=id(x,y);
rep(dir,0,7) {
int nx=x+mx[dir],ny=y+my[dir];
if(nx>=1&&nx<=n&&ny>=1&&ny<=m&&pa[id(nx,ny)]) pa[findset(id(nx,ny))]=findset(id(x,y));
}
}
void solve() {
n=read();m=read();int S=n*m+1,T=n*m+2;
memset(pa,0,sizeof(pa));pa[S]=S;pa[T]=T;
rep(i,1,n) {
scanf("%s",s+1);
rep(j,1,m) {
if(s[j]=='1') Add(i,j);
if(j==1&&s[j]=='1') pa[findset(S)]=findset(id(i,j));
if(j==m&&s[j]=='1') pa[findset(T)]=findset(id(i,j));
}
}
int k=read(),ok=0;
if(findset(S)==findset(T)) {puts("0");ok=1;}
rep(i,1,k) {
int x=read()+1,y=read()+1;
Add(x,y);
if(y==1) pa[findset(S)]=findset(id(x,y));
if(y==m) pa[findset(T)]=findset(id(x,y));
if(!ok&&findset(S)==findset(T)) {printf("%d\n",i);ok=1;}
}
if(!ok) printf("-1\n");
}
int main() {
dwn(T,read(),1) solve();
return 0;
}
T3 Bomber Man wants to bomb an Array.
直接DP,发现一个转移是否合法只取决于区间内是否恰好有一个点。
#include<cstdio>
#include<cstring>
#include<cctype>
#include<cmath>
#include<algorithm>
#define rep(i,s,t) for(int i=s;i<=t;i++)
#define dwn(i,s,t) for(int i=s;i>=t;i--)
using namespace std;
inline int read() {
int x=0,f=1;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=-1;
for(;isdigit(c);c=getchar()) x=x*10+c-'0';
return x*f;
}
typedef long long ll;
const int maxn=2010;
double score(int len) {return log2(len);}
int n,m,S[maxn];
double f[maxn];
void solve() {
n=read();m=read();
memset(S,0,sizeof(S));
rep(i,1,m) S[read()+1]++;
rep(i,1,n) S[i]+=S[i-1];
f[0]=0.0;
rep(i,1,n) {
f[i]=0.0;
rep(j,0,i-1) if(S[i]-S[j]==1) f[i]=max(f[i],f[j]+score(i-j));
}
printf("%.0lf\n",floor(1000000*f[n]));
}
int main() {
dwn(T,read(),1) solve();
return 0;
}
T4 xiaoxin and his watermelon candy
先暴力哈希,然后转化成区间不同数的个数查询,离线树状数组随便做做。
#include<cstdio>
#include<cstring>
#include<cctype>
#include<ctime>
#include<algorithm>
#define rep(i,s,t) for(int i=s;i<=t;i++)
#define dwn(i,s,t) for(int i=s;i>=t;i--)
using namespace std;
const int BufferSize=1<<16;
char buffer[BufferSize],*head,*tail;
inline char Getchar() {
if(head==tail) {
int l=fread(buffer,1,BufferSize,stdin);
tail=(head=buffer)+l;
}
return *head++;
}
inline int read() {
int x=0,f=1;char c=Getchar();
for(;!isdigit(c);c=Getchar()) if(c=='-') f=-1;
for(;isdigit(c);c=Getchar()) x=x*10+c-'0';
return x*f;
}
typedef long long ll;
typedef unsigned long long ull;
const int maxn=200010;
ull X,val[maxn],tmp[maxn];
int n,m,A[maxn];
struct Query {
int l,r,id;
bool operator < (const Query& ths) const {
return l<ths.l;
}
}Q[maxn];
int last[maxn],f[maxn];
int sumv[maxn],ans[maxn];
int sum(int x) {int res=0;for(;x;x-=x&-x) res+=sumv[x];return res;}
void add(int x,int v) {for(;x<=n;x+=x&-x) sumv[x]+=v;}
void solve() {
n=read();
rep(i,1,n) A[i]=read()+1,sumv[i]=0;
if(n>=3) {
rep(i,1,n-2) {
if(A[i]<=A[i+1]&&A[i+1]<=A[i+2]) val[i]=X*X*A[i]+X*A[i+1]+(ull)A[i+2];
else val[i]=0;
tmp[i]=val[i];
}
sort(tmp+1,tmp+n-1);
rep(i,1,n-2) {
if(!val[i]) A[i]=0;
else A[i]=lower_bound(tmp+1,tmp+n-1,val[i])-tmp;
}
rep(i,0,n) last[i]=n+1;
dwn(i,n-2,1) f[i]=last[A[i]],last[A[i]]=i;
rep(i,1,n) if(last[i]<n) add(last[i],1);
m=read();
rep(i,1,m) Q[Q[i].id=i].l=read(),Q[i].r=read()-2;
sort(Q+1,Q+m+1);int cur=1;
rep(i,1,m) {
while(cur<Q[i].l&&cur<=n-2) {
if(A[cur]) add(cur,-1),add(f[cur],1);
cur++;
}
if(Q[i].l<=Q[i].r) ans[Q[i].id]=sum(Q[i].r)-sum(Q[i].l-1);
else ans[Q[i].id]=0;
}
rep(i,1,m) printf("%d\n",ans[i]);
}
else {
m=read();
rep(i,1,m) read(),read(),printf("%d\n",0);
}
}
int main() {
X=52501;srand(time(0));
dwn(i,rand()%10+5,1) X=X*233333;
dwn(T,read(),1) solve();
return 0;
}
BestCoder Round #77的更多相关文章
- hdu 5652 India and China Origins(二分+bfs || 并查集)BestCoder Round #77 (div.2)
题意: 给一个n*m的矩阵作为地图,0为通路,1为阻碍.只能向上下左右四个方向走.每一年会在一个通路上长出一个阻碍,求第几年最上面一行与最下面一行会被隔开. 输入: 首行一个整数t,表示共有t组数据. ...
- hdu5634 BestCoder Round #73 (div.1)
Rikka with Phi Accepts: 5 Submissions: 66 Time Limit: 16000/8000 MS (Java/Others) Memory Limit: ...
- BestCoder Round #89 02单调队列优化dp
1.BestCoder Round #89 2.总结:4个题,只能做A.B,全都靠hack上分.. 01 HDU 5944 水 1.题意:一个字符串,求有多少组字符y,r,x的下标能组成等比数列 ...
- BestCoder Round #90 //div all 大混战 一题滚粗 阶梯博弈,树状数组,高斯消元
BestCoder Round #90 本次至少暴露出三个知识点爆炸.... A. zz题 按题意copy Init函数 然后统计就ok B. 博弈 题 不懂 推了半天的SG..... 结果这 ...
- bestcoder Round #7 前三题题解
BestCoder Round #7 Start Time : 2014-08-31 19:00:00 End Time : 2014-08-31 21:00:00Contest Type : ...
- Bestcoder round #65 && hdu 5593 ZYB's Tree 树形dp
Time Limit: 3000/1500 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total Submissio ...
- Bestcoder round #65 && hdu 5592 ZYB's Premutation 线段树
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total Submissio ...
- 暴力+降复杂度 BestCoder Round #39 1002 Mutiple
题目传送门 /* 设一个b[]来保存每一个a[]的质因数的id,从后往前每一次更新质因数的id, 若没有,默认加0,nlogn复杂度: 我用暴力竟然水过去了:) */ #include <cst ...
- 贪心 BestCoder Round #39 1001 Delete
题目传送门 /* 贪心水题:找出出现次数>1的次数和res,如果要减去的比res小,那么总的不同的数字tot不会少: 否则再在tot里减去多余的即为答案 用set容器也可以做,思路一样 */ # ...
随机推荐
- ODATA WEB API(一)---扩展使用
一.概述 时间也算充足,抽点时间总结下OData的常用的使用方式,开放数据协议(OData)是一个查询和更新数据的Web协议.OData应用了web技术如HTTP.Atom发布协议(AtomPub)和 ...
- 栈与队列:refresh的停车场
数据结构实验之队列一:排队买饭 Time Limit: 1000MS Memory limit: 65536K 题目描述 中午买饭的人特多,食堂真是太拥挤了,买个饭费劲,理工大的小孩还是很聪明的,直接 ...
- 为什么是 n(n+1)/2 ?
n(n+1)/2是一个数列的元素两两运算后的不重复结果数.如图: 假如数列a = 1,2,3....n.那么该数列内的元素两两相乘,则会构建出上图中的表格,这个表格应该有n x n 个元素. 用程序写 ...
- C# Qrcode生成二维码支持中文,带图片,带文字 2015-01-22 15:11 616人阅读 评论(1) 收藏
1.下载Qrcode库源码,下载地址:http://www.codeproject.com/Articles/20574/Open-Source-QRCode-Library 2.打开源码时,部分类库 ...
- h5 range应用 透明度+RGB
透明度 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8 ...
- Build Instructions (Windows) – The Chromium Projects
转自:http://121.199.54.6/wordpress/?p=1156 原始地址:http://www.chromium.org/developers/how-tos/build-instr ...
- Mysql添加外键约束
简单说一下使用外键的好处 1.完整性约束 比如:用户表中有字段 用户编号(id) , 名称(username)设备表中有字段 设备编号(id) , 设备名称(devicename) 设备属于的用户编号 ...
- APP交互
交互设计基本功!5个值得学习的APP交互方式http://www.uisdc.com/5-interactive-design-worth-learning 移动App交互设计10大趋势–你用到了吗? ...
- 64位ubuntu下重新编译hadoop2.2流水账
hadoop官方网站中只提供了32位的hadoop-2.2.0.tar.gz,如果要在64位ubuntu下部署hadoop-2.2.0,就需要重新编译源码包,生成64位的部署包.建议以下操作使用roo ...
- SpringRMI解析1-使用示例
Java远程方法调用,即JavaRMI(JavaRemote Method Invocation),是Java编程语言里一种用于实现远程过程调用的应用程序编程接口.它使客户机上的运行的程序可以调用远程 ...