K 배 동적 뺄셈 게임
2237 단어 게임.
#include <iostream>
#include <string.h>
#include <stdio.h>
using namespace std;
const int N = 2000005;
int a[N],b[N];
int main()
{
int T,tt=1;
int n,k;
scanf("%d",&T);
while(T--)
{
scanf("%d%d",&n,&k);
a[0] = b[0] = 1;
int i = 0;
int j = 0;
while(a[i] < n)
{
i++;
a[i] = b[i-1] + 1;
while(a[j+1] * k < a[i]) j++;
if(a[j] * k < a[i]) b[i] = a[i] + b[j];
else b[i] = a[i];
}
printf("Case %d: ",tt++);
if(a[i] == n) puts("lose");
else
{
int ans = 0;
while(n)
{
if(n >= a[i])
{
n -= a[i];
ans = a[i];
}
i--;
}
printf("%d
",ans);
}
}
return 0;
}
제목: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3599
#include <iostream>
#include <string.h>
#include <stdio.h>
using namespace std;
typedef long long LL;
const LL N = 3000005;
LL a[N],b[N];
int main()
{
LL T;
LL n,k;
scanf("%lld",&T);
while(T--)
{
scanf("%lld%lld",&k,&n);
a[0] = b[0] = 1;
LL i = 0;
LL j = 0;
while(a[i] < n)
{
i++;
a[i] = b[i-1] + 1;
while(a[j+1] * k < a[i]) j++;
if(a[j] * k < a[i]) b[i] = a[i] + b[j];
else b[i] = a[i];
}
LL ans = 0;
if(a[i] == n) ans = n - i - 1;
else ans = n - i;
printf("%lld
",ans);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HDOJ/HDU 1113 Word Amalgamation (사전 순서 ~ 지도)a dictionary, which consists of at least one and at most 100 words, one per line; a line containing XXXXXX, which signal...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.