luogu P2041 分裂游戏(结论题)

Posted xu-daxia

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了luogu P2041 分裂游戏(结论题)相关的知识,希望对你有一定的参考价值。

题意

技术分享图片

题解

一开始理解错题意了。以为这题不可解。。

其实这题当n>=3时都是无解的

然后n=1,2时的解都给出来了。

推荐一个博客的证明

 

 1 #include<iostream>
 2 #include<cstring>
 3 #include<cstdio>
 4 #include<cmath>
 5 #include<algorithm>
 6 using namespace std;
 7 int main(){
 8     int n;
 9     scanf("%d",&n);
10     if(n==1){
11         printf("1
1 1");
12     }
13     else if(n==2){
14         printf("4
1 1
2 1
2 2
1 2");
15     }
16     else printf("-1");
17     return 0;
18 }

 

以上是关于luogu P2041 分裂游戏(结论题)的主要内容,如果未能解决你的问题,请参考以下文章

博弈论题表(好少~~~)

树形dp 结论题 bzoj5024 [Jsoi2010]游戏

luogu 3951 小凯的疑惑

jzoj3552WC2014模拟2.6结论题并行博弈

沙雕打表结论题

ECNU620数学题(结论题)