题目描述

FJ and his cows enjoy playing a mental game. They write down the numbers from 11 to N(1 \le N \le 10)N(1≤N≤10) in a certain order and then sum adjacent numbers to produce a new list with one fewer number. They repeat this until only a single number is left. For example, one instance of the game (when N=4N=4 ) might go like this:

    3   1   2   4
4 3 6
7 9
16

Behind FJ's back, the cows have started playing a more difficult game, in which they try to determine the starting sequence from only the final total and the number NN . Unfortunately, the game is a bit above FJ's mental arithmetic capabilities.

Write a program to help FJ play the game and keep up with the cows.

有这么一个游戏:

写出一个 11 至 NN 的排列 a_iai​ ,然后每次将相邻两个数相加,构成新的序列,再对新序列进行这样的操作,显然每次构成的序列都比上一次的序列长度少 11 ,直到只剩下一个数字位置。下面是一个例子:

3,1,2,43,1,2,4

4,3,64,3,6

7,97,9

1616

最后得到 1616 这样一个数字。

现在想要倒着玩这样一个游戏,如果知道 NN ,知道最后得到的数字的大小 sumsum ,请你求出最初序列 a_iai​ ,为 11 至 NN 的一个排列。若答案有多种可能,则输出字典序最小的那一个。

[color=red]管理员注:本题描述有误,这里字典序指的是 1,2,3,4,5,6,7,8,9,10,11,121,2,3,4,5,6,7,8,9,10,11,12

而不是 1,10,11,12,2,3,4,5,6,7,8,91,10,11,12,2,3,4,5,6,7,8,9 [/color]

输入输出格式

输入格式:

两个正整数 n,sumn,sum 。

输出格式:

输出包括 11 行,为字典序最小的那个答案。

当无解的时候,请什么也不输出。(好奇葩啊)

输入输出样例

输入样例#1:

4 16
输出样例#1:

3 1 2 4

说明

对于 40\%40% 的数据, n≤7n≤7 ;

对于 80\%80% 的数据, n≤10n≤10 ;

对于 100\%100% 的数据, n≤12,sum≤12345n≤12,sum≤12345 。

Solution:

  本题比较水(纯暴力就能过)。

  不难发现每次合并,每个位置的数所参与的贡献次数为杨辉三角的第$n$行所对应的数。

  举个例子:$a,b,c,d\rightarrow a+3b+3c+d$。最后一个数中$a,b,c,d$的系数就是杨辉三角第$4$行的数列。

  所以我们可以先递推出前$12$行杨辉三角的数,然后作为系数,因为要使得前面的数值尽可能小,所以就枚举每一位的取值,随便加一个可行性剪枝(记录当前的$tot$,若大于总和$sum$则减掉),然后记录一下每个数的取值范围,乱搞一下就好了。

代码:

#include<bits/stdc++.h>
#define il inline
#define ll long long
#define For(i,a,b) for(int (i)=(a);(i)<=(b);(i)++)
#define Bor(i,a,b) for(int (i)=(b);(i)>=(a);(i)--)
using namespace std;
int n,sum,a[],c[][];
bool f=,vis[]; il int gi(){
int a=;char x=getchar();bool f=;
while((x<''||x>'')&&x!='-')x=getchar();
if(x=='-')x=getchar(),f=;
while(x>=''&&x<='')a=(a<<)+(a<<)+x-,x=getchar();
return f?-a:a;
} il void init(){
c[][]=;
For(i,,) For(j,,i) c[i][j]=c[i-][j-]+c[i-][j];
} il void dfs(int now,int tot){
if(sum-tot<=)return;
if(now==n-)
if(!vis[sum-tot]&&sum-tot<=n) {
a[n]=sum-tot;
For(i,,n) cout<<a[i]<<' ';
exit();
}
int p=min(sum-tot,n);
For(i,,p)
if(!vis[i]) {
a[now+]=i;vis[i]=;
dfs(now+,tot+i*c[n][now+]);
vis[i]=;
}
} int main(){
ios::sync_with_stdio();
init();
n=gi(),sum=gi();
if(n==){cout<<;return ;}
For(i,,n) {
vis[i]=;
a[]=i,dfs(,i);
vis[i]=;
}
return ;
}

最新文章

  1. 树莓派3B的食用方法-1(装系统 网线ssh连接)
  2. Mac使用总结
  3. 前端学习实践笔记--JavaScript深入【2】
  4. visualsvn server 报错 can&#39;t read file &quot;current&quot;:End of file out
  5. JQuery 预热
  6. 对&lt;&lt; ubuntu 12.04编译安装linux-3.6.10内核笔记&gt;&gt;的修正
  7. IT项目外包有哪些注意事项
  8. Excel表格中汉字转拼音
  9. BZOJ 1415: [Noi2005]聪聪和可可( 最短路 + 期望dp )
  10. SQL Server 2008 R2 性能计数器详细列表(五)
  11. Page visibility 页面可见性
  12. 笔记:Spring Cloud Feign 声明式服务调用
  13. 派生 de rive
  14. Hdoj 2084.数塔 题解
  15. vue查缺补漏题
  16. 从知名外企到创业公司做CTO是一种怎样的体验?
  17. HDOJ4261 Estimation
  18. left join联查提高执行性能
  19. docker tag 详解
  20. spring boot 2.0.3+spring cloud (Finchley)7、服务链路追踪Spring Cloud Sleuth

热门文章

  1. python实践项目—Collatz序列
  2. POCO TCPServer 解析
  3. vue兄弟组件传值$on多次执行的问题
  4. sublime3常用插件总结
  5. 吐血分享:QQ群霸屏技术教程之霸屏实施细则
  6. python3 练习题100例 (二十五)打印一个n层金字塔
  7. PublicCMS 网站漏洞 任意文件写入并可提权服务器权限
  8. matlab-罗曼诺夫斯基准则剔除粗大值
  9. maven中settings文件的配置
  10. 20145202马超 2016-2017-2 《Java程序设计》第一次实验