POJ1704[Georgia and Bob]

下面的话来自http://acm.pku.edu.cn/JudgeOnline/showmessage?message_id=144157

我们从右到左,将每2个棋子看成一对来处理。
如果对方移动某对棋子中的左边棋子x步,那么我方就移动右边棋子x步。
如果对方一定某对棋子中的右边棋子,那么就可以看作NIM游戏了。

恩,然后,贴代码。

CODE:

/*

AUTHOR: Su Jiao

DATE: 2010-6-19

DESCRIPTION:

http://acm.pku.edu.cn/JudgeOnline/problem?id=1704

*/

#include <iostream>

using std::cin;

using std::cout;

using std::endl;

#include <vector>

using std::vector;

#include <string>

using std::string;

#include <algorithm>

using std::sort;

 

class Application

{

      int T,N;

      vector<int> P;

      string get()

      {

             sort(P.begin(),P.end());//IMPORTANT

             int SG=(N&1)?P[0]-1:0;

             for (int i=N-2;i>=0;i-=2)

                 SG^=P[i+1]-P[i]-1;

             if (SG) return “Georgia will win”;

             else return “Bob will win”;

      }

      public:

      Application()

      {

                   std::ios::sync_with_stdio(false);

      }

      int run()

      {

          cin>>T;

          for (int i=0;i<T;i++)

          {

              cin>>N;

              P.resize(N);

              for (int j=0;j<N;j++)

                  cin>>P[j];

              cout<<get()<<endl;

              P.clear();

          }

          return 0;

      }

};

 

int main()

{

    Application app;

    return app.run();

}

 

留下评论

您的电子邮箱地址不会被公开。 必填项已用 * 标注