P3014 [USACO11FEB]牛线Cow Line

题目背景

征求翻译。如果你能提供翻译或者题意简述,请直接发讨论,感谢你的贡献。

题目描述

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.

输入输出格式

输入格式:

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

输出格式:

  • 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:

5 2
P
3
Q
1 2 5 3 4

输出样例#1:

1 2 4 3 5
5 
#include<map>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int n,m,vis[21];
long long num[21];
int main(){//freopen("permutation.in","r",stdin);//freopen("permutation.out","w",stdout);scanf("%d%d",&n,&m);for(int i=1;i<=21;i++)    num[i]=1;for(int i=2;i<=n;i++)    num[n-i+1]=i*num[n-i+2];for(int k=1;k<=m;k++){char c;long long x;cin>>c;memset(vis,0,sizeof(vis));if(c=='P'){cin>>x;long long k=x;int flag=1;for(int i=1;i<=n;i++){int ans;if(k>=num[i+1]){long long a=k/num[i+1];long long nn=k%num[i+1];if(nn)    flag=1;else flag=0;int bns=0;for(int j=1;j<=n;j++){if(!vis[j])    bns++;if(bns-flag==a){ans=j;vis[j]=1;break;}}k=nn;}else{if(flag==1){for(int j=1;j<=n;j++)if(!vis[j]){ans=j;vis[j]=1;break;}    }else{for(int j=n;j>=1;j--)if(!vis[j]){ans=j;vis[j]=1;break;}}}cout<<ans<<" ";}cout<<endl;}else{long long ans=0;for(int i=1;i<=n;i++){cin>>x;int bns=0;for(int j=1;j<=n;j++){if(!vis[j])    bns++;if(j==x)    break;}bns--;vis[x]=1;ans+=(long long)bns*num[i+1];}cout<<ans+1<<endl;}}
}

转载于:https://www.cnblogs.com/cangT-Tlan/p/7483827.html

洛谷 P3014 [USACO11FEB]牛线Cow Line相关推荐

  1. Luogu P3014 [USACO11FEB]牛线Cow Line

    题目链接:传送门 康托展开模板 不了解的去找资料自学 很好入手 #include <iostream> #include <cstdio> #include <cstri ...

  2. 洛谷 P3111 [USACO14DEC]牛慢跑Cow Jog_Sliver

    P3111 [USACO14DEC]牛慢跑Cow Jog_Sliver 题目描述 The cows are out exercising their hooves again! There are N ...

  3. 洛谷 2953 [USACO09OPEN]牛的数字游戏Cow Digit Game

    洛谷 2953  [USACO09OPEN]牛的数字游戏Cow Digit Game 题目描述 Bessie is playing a number game against Farmer John, ...

  4. 题解 洛谷 P3069 [USACO13JAN]牛的阵容Cow Lineup

    洛谷P3069[USACO13JAN]牛的阵容CowLineup\color{#00F}{洛谷\ P3069\ [USACO13JAN]牛的阵容Cow Lineup}洛谷 P3069 [USACO13 ...

  5. 洛谷P3647 [APIO2014] 连珠线 题解

    洛谷P3647 [APIO2014] 连珠线 题解 题目链接:P3647 [APIO2014] 连珠线 题意: 在达芬奇时代,有一个流行的儿童游戏称为连珠线.当然,这个游戏是关于珠子和线的.线是红色或 ...

  6. Cow Line(洛谷-P3014)

    题目描述 The N (1 <= N <= 20) cows conveniently numbered 1...N are playing yet another one of thei ...

  7. 洛谷 P1569 [USACO11FEB]属牛的抗议Generic Cow Prote…

    P1569 [USACO11FEB]属牛的抗议Generic Cow Prote- 题目描述 Farmer John's N (1 <= N <= 100,000) cows are li ...

  8. 洛谷P1569 [USACO11FEB]属牛的抗议Generic Cow Prote…

    题目描述 Farmer John's N (1 <= N <= 100,000) cows are lined up in a row and numbered 1..N. The cow ...

  9. 【洛谷P3014】Cow Line

    题目大意:康托展开和逆康托展开模板题. 题解: 注:20!约为 2e18. 代码如下 #include <bits/stdc++.h> using namespace std; const ...

最新文章

  1. python如何返回多个值_python- 如何返回多个值 | 学步园
  2. PHP 依赖注入,从此不再考虑加载顺序
  3. oracle中trunc x-1,oracle中trunc函数的说明
  4. ros中move_group的参数动态设置
  5. linux lnmp1.5.tar.gz,Linux 下lnmp
  6. 平衡搜索树之红黑树(图片格式)
  7. 服务器技术文件,服务端开发技术文档要包含什么?
  8. 单片机c语言1602怎么接线,lcd1602中文资料分享:lcd1602接线图_lcd1602与单片机连接图 - 全文...
  9. 记录为小电机安装一个5012编码器(多摩川协议)的过程
  10. 董明珠表示“格力不能更好运营,我绝不交班”,现实由不得她
  11. qq说说时间轴php实现,qq空间时间轴PHP实现时间轴函数代码
  12. Camunda/Flowable/Activiti技术发展史/盘古BPM框架对比最新版
  13. 如何保护自己的个人隐私
  14. github下载release连接失败解决方法 亲测有效
  15. mysql8.0.15下载后怎么打开_mysql8.0.15下载安装详细教程新手必备!
  16. github下载加速的几种方法
  17. win7下搭建小程序服务器,重磅!微信PC端支持小程序直接开启 适配Win7及以上系统...
  18. 没有植入的内容就是TM在逗我
  19. group by 分页 mysql_Mysql 单表查询-排序-分页-group by初识
  20. sawyer机器人进入SDK模式

热门文章

  1. 关于android性能,内存优化 http://www.cnblogs.com/zyw-205520/archive/2013/02/17/2914190.html
  2. 网址被腾讯拦截的处理方法
  3. C语言 输入一个5位正整数,判断它是不是回文数
  4. 机器学习教程 之 K-means聚类:简单有效的聚类方法
  5. 超详细 redis入门教程
  6. nz-select不能写在label标签里面
  7. matlab 与VS混合编程的几个问题
  8. CSDN文章 无法通过百度搜索,怎么办?
  9. PHP开源导航,OneNav-简约免费开源导航PHP源码
  10. 简约好看的自适应导航页源码