hdoj 1729 Stone Game (sg 함수)
3448 단어 바둑 을 두다
제목:
현재 n 개의 상자 가 있 습 니 다. 상자 마다 용적 si 와 현재 상자 안의 돌 수 ci 가 있 습 니 다. 두 사람 은 돌아 가면 서 이 n 개의 상자 안에 돌 을 넣 습 니 다. 매번 넣 는 개 수 는 1 - ci * ci 입 니 다.예 를 들 어 상자 안에 돌 이 세 개 있 으 면 다음 사람 이 돌 을 1 ~ 9 개 넣 을 수 있 고 마지막 에 돌 을 넣 지 못 하 는 사람 이 진다.
처음부터 직접 전달 sg 함수... 데이터 양 이 많 으 면 필연적으로 TLE...
생각:
우 리 는 s 가 틀림없이 필 패 태 라 는 것 을 알 고 있다. 이때 이미 넣 을 돌 이 없다.
우선 우 리 는 c 가 필 패 점 이 라 고 가정 하면 c + c * c 가 있다.
c + 1 은 필승 점 이 고 c + 1 + (c + 1) * (c + 1) > = s 는 이 두 가지 공식 에 따라 s 보다 작은 최대 필 요 를 구 할 수 있다.
실패 하 다 그리고 t + 1 - s - 1 은 필승 점 이다. 왜냐하면 (t + 1 - s - 1 은 모두 s 이 점 에 도착 할 수 있 기 때문이다)
다음은 세 가지 상황 으로 나 누 어 토론 한다.
c = = t 시 는 이때 반드시 패 점 을 0 으로 되 돌려 야 한다.
c > t 일 때 C 는 필승 점 입 니 다. C 의 후계 집합 중 가장 작 으 면 됩 니 다.이때 가장 작은 것 은 s - c 이다.
돌멩이 수: s s-1 s-2 s-3 ..... c .. .. t
대응 하 는 sg 값: 0 1 2 3 ..... s-c ... 0
그리고 c < t 시 t 를 s 로 계속 재 귀적 합 니 다.왜냐하면 방금 켰 어 요. 네, s 는 항상 필 패 점 이에 요.
참조 블 로그: 클릭 하여 링크 열기
코드:
#include
#include
#include
#include
using namespace std;
int solve(int s, int c)
{
int p = sqrt(s);
while(p+p*p >= s) p--;
if(c > p) return s-c;
else return solve(p, c);
}
int main(void)
{
int n, ca = 1;
while(cin >> n, n)
{
int ans = 0;
for(int i = 0; i < n; i++)
{
int s, c;
scanf("%d%d", &s, &c);
ans ^= solve(s, c);
}
printf("Case %d:
", ca++);
puts(ans ? "Yes" : "No");
}
return 0;
}
Stone Game
Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others) Total Submission(s): 3282 Accepted Submission(s): 1046
Problem Description
This game is a two-player game and is played as follows:
1. There are n boxes; each box has its size. The box can hold up to s stones if the size is s.
2. At the beginning of the game, there are some stones in these boxes.
3. The players take turns choosing a box and put a number of stones into the box. The number mustn’t be great than the square of the number of stones before the player adds the stones. For example, the player can add 1 to 9 stones if there are 3 stones in the box. Of course, the total number of stones mustn’t be great than the size of the box.
4.Who can’t add stones any more will loss the game.
Give an Initial state of the game. You are supposed to find whether the first player will win the game if both of the players make the best strategy.
Input
The input file contains several test cases.
Each test case begins with an integer N, 0 < N ≤ 50, the number of the boxes.
In the next N line there are two integer si, ci (0 ≤ ci ≤ si ≤ 1,000,000) on each line, as the size of the box is si and there are ci stones in the box.
N = 0 indicates the end of input and should not be processed.
Output
For each test case, output the number of the case on the first line, then output “Yes” (without quotes) on the next line if the first player can win the game, otherwise output “No”.
Sample Input
3 2 0 3 3 6 2 2 6 3 6 3 0
Sample Output
Case 1: Yes Case 2: No
Source
"왕 신 은 보 배" 항주 전자 과학기술 대학 프로 그래 밍 초청 경기
Recommend
lcy
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HDOJ 2176 돌 쌓 기 게임한 더미 에서 만 얻 을 수 있 습 니 다. 예 를 들 어 5 더미 5, 7, 8, 9, 10 선 취 자 는 이 길 수 있 습 니 다. 선 취 자 는 첫 번 째 로 얻 을 때 8 개 있 는 더미 에서 7 개 를 가 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.