[USACO06FEB]数字三角形

题目描述

FJ and his cows enjoy playing a mental game. They write down the numbers from 1 to 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=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 N. 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.

有这么一个游戏:

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

3 1 2 4

4 3 6

7 9 16 最后得到16这样一个数字。

现在想要倒着玩这样一个游戏,如果知道N,知道最后得到的数字的大小sum,请你求出最初序列a[i],为1~N的一个排列。若答案有多种可能,则输出字典序最小的那一个。

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

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

输入输出格式

输入格式:

两个正整数n,sum。

输出格式:

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

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

输入输出样例

输入样例#1:

4 16

输出样例#1:

3 1 2 4

说明

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

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

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

一上来,直接打的大爆搜(70)。

 1 #include<cstdio>
 2 int n,m;
 3 int s[13],bf[13];
 4 bool v[13];
 5 void find(int x){
 6     if(x>n){
 7         s[0]=n;
 8         while(s[0]--){
 9             for(int i=1;i<=s[0];i++) s[i]+=s[i+1];
10         }
11         if(s[1]==m){
12             for(int i=1;i<=n;i++) printf("%d ",bf[i]);
13             n=0;
14         }
15         else{
16             for(int i=1;i<=n;i++) s[i]=bf[i];
17         }
18         return;
19     }
20     for(int i=1;i<=n;i++) if(!v[i]){s[x]=bf[x]=i;v[i]=1;find(x+1);v[i]=0;}
21 }
22 int main(){
23     scanf("%d%d",&n,&m);
24     find(1);
25     return 0;
26 }

后来,看别人代码,找了一下每一位上对答案的影响。(80)

 1 #include<cstdio>
 2 int n,m;
 3 int s[15],js[15]={0,1};
 4 bool v[15];
 5 void find(int x,int y){
 6     if(x>n){
 7         if(y==m){
 8             for(int i=1;i<=n;i++) printf("%d ",s[i]);
 9             n=0;
10         }
11         return;
12     }
13     for(int i=1;i<=n;i++)
14     if(!v[i]){
15         s[x]=i;
16         v[i]=1;
17         find(x+1,y+js[x]*i);
18         v[i]=0;
19     }
20 }
21 int main(){
22     scanf("%d%d",&n,&m);
23     for(int i=1;i<n;i++)
24     for(int j=i;j>0;j--)
25     js[j+1]+=js[j];
26     find(1,0);
27     return 0;
28 }

最后又加了一个

if(y>m) return;

的剪枝。终于过了。

代码实现:

 1 #include<cstdio>
 2 int n,m;
 3 int s[15],js[15]={0,1};
 4 bool v[15];
 5 void find(int x,int y){
 6     if(y>m) return;
 7     if(x>n){
 8         if(y==m){
 9             for(int i=1;i<=n;i++) printf("%d ",s[i]);
10             n=0;
11         }
12         return;
13     }
14     for(int i=1;i<=n;i++)
15     if(!v[i]){
16         s[x]=i;
17         v[i]=1;
18         find(x+1,y+js[x]*i);
19         v[i]=0;
20     }
21 }
22 int main(){
23     scanf("%d%d",&n,&m);
24     for(int i=1;i<n;i++)
25     for(int j=i;j>0;j--)
26     js[j+1]+=js[j];
27     find(1,0);
28     return 0;
29 }

。。。我去年八月份就会的题,现在。。。

时间: 2024-10-13 10:42:11

[USACO06FEB]数字三角形的相关文章

洛谷P1118 [USACO06FEB]数字三角形 搜索

洛谷P1118 [USACO06FEB]数字三角形Backward Digit Su-     搜索 这题我们发现每一个位置的加权就是 杨辉三角 yh[ n ][ i ] 然后我们就可以求 n! 暴力 ,但是会 TLE 额 好像是会T 因为12! 已经 4亿了然后我们加一个强力剪枝 如果当前求出来的 s 已经大于 sum了,因为没有负的加权,也就是说这一路是没有用了的,在继续搜下去也不能更新答案了,那么就直接退出 . 1 #include <cstdio> 2 #include <cma

P1118 [USACO06FEB]数字三角形Backward Digit Su…

P1118 [USACO06FEB]数字三角形Backward Digit Su… 题目描述 FJ and his cows enjoy playing a mental game. They write down the numbers from 1 to N (1 <= N <= 10) in a certain order and then sum adjacent numbers to produce a new list with one fewer number. They rep

做题记录: P1118 [USACO06FEB]数字三角形Backward Digit Su…

P1118 [USACO06FEB]数字三角形Backward Digit Su- /*思路:设一开始的n个数为a1.a2.a3...an, 一步一步合并就可以用a1..an表示出最后剩下来 的数,不难发现其中a1..an的系数恰好就是第n层 杨辉三角中的数.所以我们可以先处理出第n层杨 辉三角中的数,然后根据这一层中的数搜索即可.*/ #include<iostream> #include<cstdio> #include<fstream> #include<a

[luogu p1118] [USACO06FEB]数字三角形

题面 题目描述 FJ and his cows enjoy playing a mental game. They write down the numbers from \(1\) to$ N(1 \le N \le 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 numb

P1118 [USACO06FEB]数字三角形`Backward Digit Su`…

题目描述 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 num

P1118 [USACO06FEB]数字三角形`Backward Digit Su`… 回溯法

有这么一个游戏: 写出一个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的一个排列.若答案有多种可能,则输出字典序最小的那一个. [

数字三角形

数字三角形必须经过某一个点,使之走的路程和最大 输入格式: 第1行n,表示n行 (n<=25), 第2到n+1行为每个的权值,第n+2行为两个数x,y表示必须经过的点 输出格式: 输出最大值 样例1 输入: 2 1 1 1 1 1 输出: 2 //11 月 23 日 2015 #include <stdio.h> int num[26][26];//存储数字三角形的权值 int route[26][2];//记录临时最优路径 int n; int s1,s2;//以特殊点分为上半段和下半

蓝桥杯 算法训练 ALGO-124 数字三角形

算法训练 数字三角形 时间限制:1.0s   内存限制:256.0MB 问题描述 (图3.1-1)示出了一个数字三角形. 请编一个程序计算从顶至底的某处的一条路 径,使该路径所经过的数字的总和最大. ●每一步可沿左斜线向下或右斜线向下走: ●1<三角形行数≤100: ●三角形中的数字为整数0,1,-99: . (图3.1-1) 输入格式 文件中首先读到的是三角形的行数. 接下来描述整个三角形 输出格式 最大总和(整数) 样例输入 573 88 1 02 7 4 44 5 2 6 5 样例输出 3

4829 [DP]数字三角形升级版

4829 [DP]数字三角形升级版 时间限制: 1 s 空间限制: 16000 KB 题目等级 : 黄金 Gold 题解 题目描述 Description 从数字三角形的顶部(如图,第一行的5表示行数)到底部有很多条不同的路径.对于每条路径,把路径上面的数加起来可以得到一个和,且!!!!!!!!! ================================================================================== =================