T1 xiaoxin juju needs help

计算组合数然后多重集排列乱搞,注意判无解情况(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;
}

T2 India and China Origins

转化成对偶图然后统计八连块联通性。

#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的更多相关文章

  1. hdu 5652 India and China Origins(二分+bfs || 并查集)BestCoder Round #77 (div.2)

    题意: 给一个n*m的矩阵作为地图,0为通路,1为阻碍.只能向上下左右四个方向走.每一年会在一个通路上长出一个阻碍,求第几年最上面一行与最下面一行会被隔开. 输入: 首行一个整数t,表示共有t组数据. ...

  2. hdu5634 BestCoder Round #73 (div.1)

    Rikka with Phi  Accepts: 5  Submissions: 66  Time Limit: 16000/8000 MS (Java/Others)  Memory Limit: ...

  3. BestCoder Round #89 02单调队列优化dp

    1.BestCoder Round #89 2.总结:4个题,只能做A.B,全都靠hack上分.. 01  HDU 5944   水 1.题意:一个字符串,求有多少组字符y,r,x的下标能组成等比数列 ...

  4. BestCoder Round #90 //div all 大混战 一题滚粗 阶梯博弈,树状数组,高斯消元

    BestCoder Round #90 本次至少暴露出三个知识点爆炸.... A. zz题 按题意copy  Init函数 然后统计就ok B. 博弈 题  不懂  推了半天的SG.....  结果这 ...

  5. bestcoder Round #7 前三题题解

    BestCoder Round #7 Start Time : 2014-08-31 19:00:00    End Time : 2014-08-31 21:00:00Contest Type : ...

  6. 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 ...

  7. Bestcoder round #65 && hdu 5592 ZYB's Premutation 线段树

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)Total Submissio ...

  8. 暴力+降复杂度 BestCoder Round #39 1002 Mutiple

    题目传送门 /* 设一个b[]来保存每一个a[]的质因数的id,从后往前每一次更新质因数的id, 若没有,默认加0,nlogn复杂度: 我用暴力竟然水过去了:) */ #include <cst ...

  9. 贪心 BestCoder Round #39 1001 Delete

    题目传送门 /* 贪心水题:找出出现次数>1的次数和res,如果要减去的比res小,那么总的不同的数字tot不会少: 否则再在tot里减去多余的即为答案 用set容器也可以做,思路一样 */ # ...

随机推荐

  1. python实现支持并发、断点续传的Ftp程序

    一.要求 1.用户md5认证 2.支持多用户同时登陆(并发) 3.进入用户的命令行模式,支持cd切换目录,ls查看目录子文件 4.执行命令(ipconfig) 5.传输文件: a.支持断点续传 b.传 ...

  2. python 之socket 网络编程

    socket通常也称作"套接字",用于描述IP地址和端口,是一个通信链的句柄,应用程序通常通过"套接字"向网络发出请求或者应答网络请求. socket起源于Un ...

  3. 学习ASP.NET缓存机制

    缓存是大型BS架构网站的性能优化通用手段,之前知道有这个概念,并且也知道很重要,但是一直没静下心来了解.这次借着学习PetShop源码的机会熟悉一下ASP.NET基本的缓存机制(生产环境中的真实缓存有 ...

  4. 11g SQL Monitor

    1,首先确认两个参数的值 SQL> show parameter statistics_level NAME                     TYPE     VALUE ------- ...

  5. [v9] 列表页 调用 正文内容 或 自定义 字段(moreinfo的调用方法)

    "才能使用的字段) id content readpoint groupids_view paginationtype maxcharperpage template paytype all ...

  6. hdu 4274 2012长春赛区网络赛 树形dp ***

    设定每个节点的上限和下限,之后向上更新,判断是否出现矛盾 #include<cstdio> #include<iostream> #include<algorithm&g ...

  7. pthread_create传递参数

    转自:http://blog.csdn.net/yeyuangen/article/details/6757525 #include <iostream> #include <pth ...

  8. Build Instructions (Windows) – The Chromium Projects

    转自:http://121.199.54.6/wordpress/?p=1156 原始地址:http://www.chromium.org/developers/how-tos/build-instr ...

  9. ios二维码扫描

    1.添加AVFoundation.framework框架 2,控制器中实现 //第一步添加AVFoundation.framework框架 #import "ViewController.h ...

  10. 【MySQL 忘记密码】MySQL忘记密码怎么解决 mysql5.5 windows7

    ---恢复内容开始--- 如果MySQL 长久不使用,忘记密码,怎么解决??? 1.首先,需要在任务管理器关闭mysql相关的服务进程 2.cmd,进入DOS窗口,进入到mysql的安装路径的bin目 ...