Simple questions about SG functions in the Game of hdu 1524 A Chess Game

Source: Internet
Author: User

Simple questions about SG functions in the Game of hdu 1524 A Chess Game
A Chess GameTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission (s): 1489 Accepted Submission (s): 679



Problem Description Let's design a new chess game. there are N positions to hold M chesses in this game. multiple chesses can be located in the same position. the positions are constituted as a topological graph, I. e. there are directed edges connecting some positions, and no cycle exists. two players you and I move chesses alternately. in each turn the player shocould move only one chess from the current position to one of its out-positions along an edge. the game does not end, until one of the players cannot move chess any more. if you cannot move any chess in your turn, you lose. otherwise, if the misfortune falls on me... I will disturb the chesses and play it again.

Do you want to challenge me? Just write your program to show your qualification!

Input contains multiple test cases. each test case starts with a number N (1 <= N <= 1000) in one line. then the following N lines describe the out-positions of each position. each line starts with an integer Xi that is the number of out-positions for the position I. then Xi integers following specify the out-positions. positions are indexed from 0 to N-1. then multiple queries follow. each query occupies only one line. the line starts with a number M (1 <= M <= 10), and then come M integers, which are the initial positions of chesses. A line with number 0 ends the test case.

Output There is one line for each query, which contains a string WIN or LOSE. WIN means that the player taking the first turn can win the game according to a clever strategy; otherwise LOSE shoshould be printed.

Sample Input

42 1 201 301 02 0 2041 11 2002 0 12 1 13 0 1 30

Sample Output
WINWINWINLOSEWIN

Wrong has been used for many times. What I never expected was that the initialization was Wrong...

Ah, when can this low-level error be overcome ..

Code:

#include 
 
  #include 
  
   #define MAX 1010bool graph[MAX][MAX];int n , sg[MAX] , in[MAX];int getSG(int index){if(sg[index] != -1){return sg[index] ;}bool hash[MAX] ;memset(hash,false,sizeof(hash)) ;for(int i = 0 ; i < n ; ++i){if(graph[index][i]){hash[getSG(i)] = true ;}}for(int i = 0 ; i < MAX; ++i){if(!hash[i]){sg[index] = i ;break ;}}return sg[index] ;}int main(){while(~scanf(%d,&n)){memset(graph,false,sizeof(graph)) ; memset(sg,-1,sizeof(sg)) ;memset(in,0,sizeof(in)) ;for(int i = 0 ; i < n ; ++i){int m;scanf(%d,&m);for(int j = 0 ; j < m ; ++j){int temp; ;scanf(%d,&temp) ;in[temp]++ ;graph[i][temp] = true ;}}for(int i = 0 ; i < n ; ++i){if(in[i] == 0){getSG(i) ;}}int m ;while(scanf(%d,&m) && m){int ans = 0 ;for(int i = 0 ; i < m ; ++i){int t ;scanf(%d,&t) ;ans ^= sg[t] ;}if(ans){puts(WIN) ;}else{puts(LOSE) ;}}}return 0 ;}
  
 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.