POJ 3187 Backward Digit Sums(next_permutation)
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.
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
4 16
Sample Output
3 1 2 4
강 한 STL, 내 가 시합 할 때 DFS 가 했 어.
제목: 1 ~ n 배열 작업 의 값 은 sum 입 니 다.
next_permutation 의 용법: 사전 순서에 따라 전체 배열 을 출력 하고 false 를 되 돌려 주지 않 았 습 니 다.
DFS 버 전:
#include
#include
#include
#include
#include
typedef long long LL;
using namespace std;
int a[15],f[15];
int n,sum;
int solve()
{
int s=0;
for(int i=0;i=1;j--)
f[j]+=f[j-1];//
}
while(solve()!=sum)
next_permutation(a,a+n);
for(int i=0;i
next_permutation:
POJ 1146:
#include
#include
#include
#include
#include
#include
typedef long long LL;
using namespace std;
int num[15],a[15];
int visit[15],p[15];
int n,sum,flag;
int solve(int k)
{
for(int i=1;i<=n;i++)
p[i]=num[i];
while(k>1)
{
for(int i=1;i
POJ 1731 :
#include
#include
#include
#include
#include
typedef long long LL;
using namespace std;
int main()
{
int len;
char s[51];
while(scanf("%s",s)!=EOF)
{
if(s[0]=='#')
break;
len=strlen(s);
if(next_permutation(s,s+len))
printf("%s
",s);
else
printf("No Successor
");
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.