hdu 1443 Joseph
http://acm.hdu.edu.cn/showproblem.php?pid=1443
제목 설명:
Joseph
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 1720 Accepted Submission(s): 1067
Problem Description
The Joseph's problem is notoriously known. For those who are not familiar with the original problem: from among n people, numbered 1, 2, . . ., n, standing in circle every mth is going to be executed and only the life of the last remaining person will be saved. Joseph was smart enough to choose the position of the last remaining person, thus saving his life to give us the message about the incident. For example when n = 6 and m = 5 then the people will be executed in the order 5, 4, 6, 2, 3 and 1 will be saved.
Suppose that there are k good guys and k bad guys. In the circle the first k are good guys and the last k bad guys. You have to determine such minimal m that all the bad guys will be executed before the first good guy.
Input
The input file consists of separate lines containing k. The last line in the input file contains 0. You can suppose that 0 < k < 14.
Output
The output file will consist of separate lines containing m corresponding to k in the input file.
Sample Input
3
4
0
Sample Output
5
30
제목:
순환 해서 가면 매번 같은 걸음 수 를 걸 을 때마다 후반 부 까지 떨 어 지고 후반 부 요소 가 모두 지나 갈 때 까지 떨어진다.
문제 풀이:
조세 프 링 문제, 나머지 문제.
자신 이 조세 프 링 의 순환 을 모 의 해 나머지 를 취하 고 앞으로 나 아 가 는 공식 을 얻 었 다.
코드:
#include<stdio.h>
#include<string.h>
int ans[20]={0};
bool circle[29] = {true};
int k=0,m=0;
int init()
{
for(k=1;k<=13;k++)
{
int n=k+k;
for(m=k+1;;m++)
{
int kill = 0;
memset(circle, true, sizeof(circle));
int start = 0;
while(kill != k)
{
int step = m % (n - kill);
if(step == 0) step = n - kill;
for(int i=1;i<=step;)
{
start++;
if(start>n) start=1;
if(circle[start]) i++;
}
if(start<=k) break;
circle[start] = false;
kill++;
if(kill==k) break;
while(circle[start]==false)
{
start--;
if(start == 0) start = n;
}
}
if(kill == k) break;
}
ans[k]=m;
}
return(0);
}
int main()
{
init();
while(scanf("%d",&k)!=EOF&&k>0) printf("%d
",ans[k]);
return(0);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HDU 3089 (쾌속 조세 프 링)기본 조세 프 링 최적화 는 k = 1 일 때 매번 전달 할 때마다 + 1 이 고 빠 른 속도 로 계산 할 수 있 습 니 다. n 이 매우 클 때 이런 사고 에 따라 전달 과정 을 신속하게 간소화 할 수 있다.전달 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.