【BZOJ】【3301】【USACO2011 Feb】Cow Line

康托展开



  裸的康托展开&逆康托展开

  康托展开就是一种特殊的hash,且是可逆的……

  序列->序号:(康托展开)

    对于每个数a[i],数比它小的数有多少个在它之前没出现,记为b[i],$ans=1+\sum b[i]* (n-i)!$

  序号->序列:(逆康托展开)

    求第x个排列所对应的序列,先将x-1,然后对于a[i],$\left\floor \frac{x}{(n-i)!} \right\floor $即为在它之后出现的比它小的数的个数,所以从小到大数一下有几个没出现的数,就知道a[i]是第几个数了。

然而这题在比较答案的时候不忽略行末空格……大家小心一点……

 1 /**************************************************************
 2     Problem: 3301
 3     User: Tunix
 4     Language: C++
 5     Result: Accepted
 6     Time:84 ms
 7     Memory:1276 kb
 8 ****************************************************************/
 9
10 //BZOJ 3301
11 #include<cstdio>
12 #include<cstring>
13 #include<cstdlib>
14 #include<iostream>
15 #include<algorithm>
16 #define rep(i,n) for(int i=0;i<n;++i)
17 #define F(i,j,n) for(int i=j;i<=n;++i)
18 #define D(i,j,n) for(int i=j;i>=n;--i)
19 #define pb push_back
20 using namespace std;
21 typedef long long LL;
22 inline LL getint(){
23     LL r=1,v=0; char ch=getchar();
24     for(;!isdigit(ch);ch=getchar()) if (ch==‘-‘) r=-1;
25     for(; isdigit(ch);ch=getchar()) v=v*10-‘0‘+ch;
26     return r*v;
27 }
28 const int N=25;
29 /*******************template********************/
30 int n,m;
31 LL fac[N];
32 int a[N];
33 bool vis[N];
34 void pailie(LL x){
35     memset(vis,0,sizeof vis);
36     F(i,1,n){
37         int t=x/fac[n-i],j,k;
38         for(k=1,j=0;j<=t;k++) if (!vis[k]) j++;
39         vis[k-1]=1; a[i]=k-1;
40         x%=fac[n-i];
41     }
42     F(i,1,n-1) printf("%d ",a[i]);
43     printf("%d\n",a[n]);
44 }
45 void hanghao(){
46     LL ans=1;
47     memset(vis,0,sizeof vis);
48     F(i,1,n){
49         int j=0,k;
50         vis[a[i]]=1;
51         F(k,1,a[i]) if (!vis[k]) j++;
52         ans+=j*fac[n-i];
53     }
54     printf("%lld\n",ans);
55 }
56 int main(){
57 #ifndef ONLINE_JUDGE
58     freopen("3301.in","r",stdin);
59     freopen("3301.out","w",stdout);
60 #endif
61     n=getint(); m=getint();
62     fac[0]=1;
63     F(i,1,20) fac[i]=fac[i-1]*i;
64 //  F(i,0,20) printf("%lld ",fac[i]); puts("");
65     char cmd[5];
66     while(m--){
67         scanf("%s",cmd);
68         if (cmd[0]==‘P‘){
69             LL x=getint()-1;
70             pailie(x);
71         }else{
72             F(i,1,n) a[i]=getint();
73             hanghao();
74         }
75     }
76     return 0;
77 }
78 

3301: [USACO2011 Feb] Cow Line

Time Limit: 10 Sec  Memory Limit: 128 MB
Submit: 84  Solved: 50
[Submit][Status][Discuss]

Description

The N (1 <= N <= 20) cows conveniently numbered 1...N are playing
yet another one of their crazy games with Farmer John. The cows
will arrange themselves in a line and ask Farmer John what their
line number is. In return, Farmer John can give them a line number
and the cows must rearrange themselves into that line.
A line number is assigned by numbering all the permutations of the
line in lexicographic order.

Consider this example:
Farmer John has 5 cows and gives them the line number of 3.
The permutations of the line in ascending lexicographic order:
1st: 1 2 3 4 5
2nd: 1 2 3 5 4
3rd: 1 2 4 3 5
Therefore, the cows will line themselves in the cow line 1 2 4 3 5.

The cows, in return, line themselves in the configuration "1 2 5 3 4" and
ask Farmer John what their line number is.

Continuing with the list:
4th : 1 2 4 5 3
5th : 1 2 5 3 4
Farmer John can see the answer here is 5

Farmer John and the cows would like your help to play their game.
They have K (1 <= K <= 10,000) queries that they need help with.
Query i has two parts: C_i will be the command, which is either ‘P‘
or ‘Q‘.

If C_i is ‘P‘, then the second part of the query will be one integer
A_i (1 <= A_i <= N!), which is a line number. This is Farmer John
challenging the cows to line up in the correct cow line.

If C_i is ‘Q‘, then the second part of the query will be N distinct
integers B_ij (1 <= B_ij <= N). This will denote a cow line. These are the
cows challenging Farmer John to find their line number.

有N头牛,分别用1……N表示,排成一行。
将N头牛,所有可能的排列方式,按字典顺序从小到大排列起来。
例如:有5头牛
1st: 1 2 3 4 5
2nd: 1 2 3 5 4
3rd: 1 2 4 3 5
4th : 1 2 4 5 3
5th : 1 2 5 3 4
……
现在,已知N头牛的排列方式,求这种排列方式的行号。
或者已知行号,求牛的排列方式。
所谓行号,是指在N头牛所有可能排列方式,按字典顺序从大到小排列后,某一特定排列方式所在行的编号。
如果,行号是3,则排列方式为1 2 4 3 5
如果,排列方式是 1 2 5 3 4 则行号为5

有K次问答,第i次问答的类型,由C_i来指明,C_i要么是‘P’要么是‘Q’。
当C_i为P时,将提供行号,让你答牛的排列方式。当C_i为Q时,将告诉你牛的排列方式,让你答行号。

Input

* Line 1: Two space-separated integers: N and K
* Lines 2..2*K+1: Line 2*i and 2*i+1 will contain a single query.
Line 2*i will contain just one character: ‘Q‘ if the cows are lining
up and asking Farmer John for their line number or ‘P‘ if Farmer
John gives the cows a line number.

If the line 2*i is ‘Q‘, then line 2*i+1 will contain N space-separated
integers B_ij which represent the cow line. If the line 2*i is ‘P‘,
then line 2*i+1 will contain a single integer A_i which is the line
number to solve for.

第1行:N和K
第2至2*K+1行:Line2*i ,一个字符‘P’或‘Q’,指明类型。
如果Line2*i是P,则Line2*i+1,是一个整数,表示行号;
如果Line2*i+1 是Q ,则Line2+i,是N个空格隔开的整数,表示牛的排列方式。

Output

* Lines 1..K: Line i will contain the answer to query i.

If line 2*i of the input was ‘Q‘, then this line will contain a
single integer, which is the line number of the cow line in line
2*i+1.

If line 2*i of the input was ‘P‘, then this line will contain N
space separated integers giving the cow line of the number in line
2*i+1.
第1至K行:如果输入Line2*i 是P,则输出牛的排列方式;如果输入Line2*i是Q,则输出行号

Sample Input

5 2
P
3
Q
1 2 5 3 4

Sample Output

1 2 4 3 5
5

HINT

Source

Silver

[Submit][Status][Discuss]

时间: 2024-10-10 23:05:57

【BZOJ】【3301】【USACO2011 Feb】Cow Line的相关文章

【BZOJ 2820】 YY的GCD

2820: YY的GCD Time Limit: 10 Sec  Memory Limit: 512 MB Submit: 807  Solved: 404 [Submit][Status] Description 神犇YY虐完数论后给傻×kAc出了一题 给定N, M,求1<=x<=N, 1<=y<=M且gcd(x, y)为质数的(x, y)有多少对 kAc这种傻×必然不会了,于是向你来请教-- 多组输入 Input 第一行一个整数T 表述数据组数 接下来T行,每行两个正整数,表示

【BZOJ】3319: 黑白树

http://www.lydsy.com/JudgeOnline/problem.php?id=3319 题意:给一棵n节点的树(n<=1e6),m个操作(m<=1e6),每次操作有两种:1.查询u到根的第一条黑边的编号.2.将u到v的路径全部染成黑色 #include <cstdio> #include <cstring> #include <cmath> #include <string> #include <iostream>

P2433 - 【BZOJ 3262三维偏序】陌上花开------三维偏序

P2433 - [BZOJ 3262三维偏序]陌上花开 Description 有n朵花,每朵花有三个属性:花形(s).颜色(c).气味(m),又三个整数表示.现要对每朵花评级,一朵花的级别是它拥有的美丽能超过的花的数量. 定义一朵花A比另一朵花B要美丽,当且仅当Sa>=Sb,Ca>=Cb,Ma>=Mb.显然,两朵花可能有同样的属性.需要统计出评出每个等级的花的数量. Input 第一行为N,K (1 <= N <= 100,000, 1 <= K <= 200,

【bzoj】4538: [Hnoi2016]网络

题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=4538 维护一个数据结构支持对于一颗树的操作,需要支持: 1.对于树上的一条路径上的每个点上放一个值. 2.撤销某次操作的路劲放. 3.查询除了经过这个点的路径的最大值. 往一个路径上丢值相当于往不经过条路径的所有点上丢值. 用一个树链剖分即可维护,对于操作区间取反. 直接查询单点最大值即可. 为了维护单点最大值,线段树中的每一个点对应两个堆,用于维护插入誉删除. 防止爆空间,所以标记永久

【BZOJ】【1272】【BeiJingWC2008】Gate of Babylon

组合数学+容斥原理 Orz zyf-zyf 多重集组合数0.0还带个数限制?  ——>  <组合数学>第6章  6.2带重复的组合 组合数还要模P 0.0? ——> Lucas定理 啊……要算组合数啊……除以阶乘神马的太麻烦肿么办?还要模P……没关系~我们可以搞预处理啊= =预处理粗来[阶乘%P]和[阶乘在模P意义下的逆元] 1 void calc(){ 2 fac[0]=1; 3 F(i,1,P-1) fac[i]=fac[i-1]*i%P; 4 inv[P-1]=pow(fac

【BZOJ】1821: [JSOI2010]Group 部落划分 Group(最小生成树+贪心)

http://www.lydsy.com:808/JudgeOnline/problem.php?id=1821 这题裸题. 本题要求最短距离最长,很明显,我们排序. 这里存在贪心,即我们把边权最小的全分给n个部落的内部,然后剩下的边最小的就是答案. 将边权较小的边分给k个部落,用并查集生成最小树,使得内部的边总是小于连到外部的边.然后分剩下k个点即可,剩下的k个点的那条边一定是部落之间最小的且最长的边. #include <cstdio> #include <cstring> #

【BZOJ】【1415】【NOI2005】聪聪和可可

数学期望+记忆化搜索 论文:<浅析竞赛中一类数学期望问题的解决方法>——汤可因  中的第一题…… Orz 黄学长 我实在是太弱,这么简单都yy不出来…… 宽搜预处理有点spfa的感觉= =凡是更新了的,都要重新入队更新一遍…… dp的记忆化搜索过程好厉害…… 期望这里一直很虚啊,赶紧再多做点题熟悉熟悉…… 1 /************************************************************** 2 Problem: 1415 3 User: Tunix

【BZOJ】【3083】遥远的国度

树链剖分/dfs序 其实过了[BZOJ][4034][HAOI2015]T2以后就好搞了…… 链修改+子树查询+换根 其实静态树的换根直接树链剖分就可以搞了…… 因为其实只有一样变了:子树 如果root在x的子树中(以1为根dfs的时候),那么现在x的子树就变成了整个dfs序中,除去含有root的那个子树的剩下的部分,画个图大概就是这样:(红色部分为现在的子树) 我们发现,这种子树由于换根而产生变化的情况,仅当在以1为根时的树中,x是new_root的祖先时发生,那么我们判断这种情况是否发生只需

【BZOJ 1854】 [Scoi2010]游戏

1854: [Scoi2010]游戏 Time Limit: 5 Sec  Memory Limit: 162 MB Submit: 2609  Solved: 931 [Submit][Status] Description lxhgww最近迷上了一款游戏,在游戏里,他拥有很多的装备,每种装备都有2个属性,这些属性的值用[1,10000]之间的数表示.当他使用某种装备时,他只能使用该装备的某一个属性.并且每种装备最多只能使用一次. 游戏进行到最后,lxhgww遇到了终极boss,这个终极bos