首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【POJ】3187 - Backward Digit Sums(枚举)

【POJ】3187 - Backward Digit Sums(枚举)

作者头像
FishWang
发布2025-08-26 19:47:52
发布2025-08-26 19:47:52
12700
代码可运行
举报
运行总次数:0
代码可运行

Backward Digit Sums

Time Limit: 1000MS

Memory Limit: 65536K

Total Submissions: 5835

Accepted: 3385

Description

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:

代码语言:javascript
代码运行次数:0
运行
复制
    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.

Input

Line 1: Two space-separated integers: N and the final sum.

Output

Line 1: An ordering of the integers 1..N that leads to the given sum. If there are multiple solutions, choose the one that is lexicographically least, i.e., that puts smaller numbers first.

Sample Input

代码语言:javascript
代码运行次数:0
运行
复制
4 16

Sample Output

代码语言:javascript
代码运行次数:0
运行
复制
3 1 2 4

Hint

Explanation of the sample: There are other possible sequences, such as 3 2 1 4, but 3 1 2 4 is the lexicographically smallest.

Source

USACO 2006 February Gold & Silver

简单枚举,但是数的系数需要观察。(类似杨辉三角)

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
#include <algorithm>
using namespace std;
int c[44][44];
void C()
{
	for (int i = 0 ; i <= 20 ; i++)
	{
		c[i][0] = 1;
		c[i][i] = 1;
	}
	for (int i = 1 ; i <= 20 ; i++)
	{
		for (int j = 1 ; j < i ; j++)
		{
			c[i][j] = c[i-1][j] + c[i-1][j-1];
		}
	}
}
int main()
{
	int n;
	int tar;
	int a[22];
	C();
	scanf ("%d %d",&n,&tar);
	for (int i = 1 ; i <= n ; i++)
		a[i] = i;
	do
	{
		int t = 0;
		for (int i = 1 ; i <= n ; i++)
		{
			t += a[i] * c[n-1][i-1];
		}
		if (t == tar)
		{
			printf ("%d",a[1]);
			for (int i = 2 ; i <= n ; i++)
				printf (" %d",a[i]);
			printf ("\n");
			break;
		}
	}while (next_permutation (a+1,a+n+1));		//枚举一遍就行了 
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档