Codeforces 1404 D.Game of Pairs

给定\(2n\)个数\(1,2,...,2n\),A 和 B 将进行交互,规则如下:

  • A 需要将元素分成 n 组 \(\mathbf{pair}\)(二元组)
  • B 从每组 \(\mathbf{pair}\)中选择一个元素,如果权值和是 \(2n\) 的倍数,那么 B 胜,否则 A 胜。

你需要选择 A/B 中的一者扮演角色,并取得胜利。

\(n\le 5\times 10^5\).

老子懒得讲了,你们TMD对着代码自己发愣去吧。

由于可以自选角色,所以我们分别考虑两个角色的必胜情况。

考虑A,我们首先发现如下性质:

  • 由于\(\sum\limits_{i=1}^n=\frac{n\times(n-1)}{2}\),所以当\(n\)是偶数时,\(\sum_{i=1}^n\)一定不是\(n\)的倍数。

于是针对n为偶数的情况我们可以很容易地构造出无解的方案:将\(i\)和\(i+n(i\in[1,n])\)放进一组,那么无论B怎么选,最后的总和一定是形如\(\frac{n\times(n-1)}{2}+kn\)的某个数,这个式子的后一项一定是n的倍数,而前一项一定不是n的倍数,所以A必胜。

那么我们继续考虑n为奇数的情况。

然而遗憾的是,这种情况下,B是存在必胜策略的...

考虑B,我们重新审视A中发现的性质:

  • 由于\(\sum\limits_{i=1}^{n}=\frac{n\times(n-1)}{2}\),所以当n是奇数是,\(\sum_{i=1}^{n}\)一定是n的倍数。

然后如何取这个方法实在是抽象,难以描述,所以

非常抱歉,这篇文章从这里开始又咕了。

code:

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. const int maxn=500005;
  4. int n,fa[maxn<<1],siz[maxn<<1];
  5. int tp[maxn<<1],xorv[maxn<<1],used[maxn<<1];
  6. int Q[maxn],topc;
  7. bool vis[maxn<<1];
  8. inline int read(){
  9. int res=0,f_f=1;char ch=getchar();
  10. while(ch<'0'||ch>'9'){if(ch=='-') f_f=-1;ch=getchar();}
  11. while(ch>='0'&&ch<='9') res=(res<<3)+(res<<1)+(ch-'0'),ch=getchar();
  12. return res*f_f;
  13. }
  14. inline int get_fa(int x){
  15. return x==fa[x]?x:fa[x]=get_fa(fa[x]);
  16. }
  17. inline void merge_fa(int x,int y){
  18. siz[get_fa(x)]+=siz[get_fa(y)];
  19. fa[get_fa(y)]=get_fa(x);
  20. }
  21. inline void dfs(int u){
  22. vis[u]=true;
  23. int v=xorv[tp[u]]^u;
  24. v=(v>n)?v-n:v+n;
  25. if(vis[v]) return;
  26. merge_fa(u,v),dfs(v);
  27. }
  28. int main(){
  29. n=read();
  30. if(n%2==0){
  31. printf("First\n");
  32. cout.flush();
  33. for (int i=1;i<=(n<<1);i++){
  34. if(i^(n<<1)) printf("%d ",(i-1)%n+1);
  35. else printf("%d\n",(i-1)%n+1);
  36. cout.flush();
  37. }
  38. }
  39. else{
  40. printf("Second\n");
  41. cout.flush();
  42. for (int i=1;i<=(n<<1);i++) tp[i]=read(),xorv[tp[i]]^=i;
  43. for (int i=1;i<=(n<<1);i++) fa[i]=i;
  44. for (int i=n+1;i<=(n<<1);i++) siz[i]=1;
  45. for (int i=1;i<=(n<<1);i++){
  46. if(vis[i]) continue;
  47. dfs(i);
  48. }
  49. int ans=(n+1)/2&1;
  50. for (int i=1;i<=(n<<1);i++){
  51. if(i^get_fa(i)) continue;
  52. int v=get_fa(xorv[tp[i]]^i);
  53. if(v>i) continue;
  54. used[i]=1,ans^=(siz[i]&1);
  55. }
  56. if(ans){
  57. for (int i=1;i<=(n<<1);i++){
  58. if(!used[i]) continue;
  59. int v=get_fa(xorv[tp[i]]^i);
  60. if((siz[v]^siz[i])&1){
  61. used[i]=0,used[v]=1;
  62. break;
  63. }
  64. }
  65. }
  66. for (int i=1;i<=(n<<1);i++){
  67. if(used[get_fa(i)]) Q[++topc]=i;
  68. }
  69. for (int i=1;i<=topc;i++){
  70. if(i^topc) printf("%d ",Q[i]);
  71. else printf("%d\n",Q[i]);
  72. }
  73. }
  74. return 0;
  75. }

Codeforces 1404 D. Game of Pairs的更多相关文章

  1. Educational Codeforces Round 10 C. Foe Pairs 水题

    C. Foe Pairs 题目连接: http://www.codeforces.com/contest/652/problem/C Description You are given a permu ...

  2. Codeforces Round #562 (Div. 2) B. Pairs

    链接:https://codeforces.com/contest/1169/problem/B 题意: Toad Ivan has mm pairs of integers, each intege ...

  3. Codeforces 159D Palindrome pairs

    http://codeforces.com/problemset/problem/159/D 题目大意: 给出一个字符串,求取这个字符串中互相不覆盖的两个回文子串的对数. 思路:num[i]代表左端点 ...

  4. codeforces 652C C. Foe Pairs(尺取法+线段树查询一个区间覆盖线段)

    题目链接: C. Foe Pairs time limit per test 1 second memory limit per test 256 megabytes input standard i ...

  5. codeforces#572Div2 E---Count Pairs【数学】【同余】

    题目:http://codeforces.com/contest/1189/problem/E 题意:给定$n$个互不相同数,一个$k$和一个质数$p$.问这$n$个数中有多少对数$(a_i+a_j) ...

  6. CodeForces - 1189E Count Pairs(平方差)

    Count Pairs You are given a prime number pp, nn integers a1,a2,…,ana1,a2,…,an, and an integer kk. Fi ...

  7. Codeforces 1169B Pairs

    题目链接:http://codeforces.com/contest/1169/problem/B 题意:给你 m 对数 ,问你能不能在 1 − n 之间找到俩个不相等的 x 和 y 使得 对于前面每 ...

  8. CodeForces - 1189 E.Count Pairs (数学)

    You are given a prime number pp, nn integers a1,a2,…,ana1,a2,…,an, and an integer kk. Find the numbe ...

  9. Codeforces 1188B - Count Pairs(思维题)

    Codeforces 题面传送门 & 洛谷题面传送门 虽说是一个 D1B,但还是想了我足足 20min,所以还是写篇题解罢( 首先注意到这个式子里涉及两个参数,如果我们选择固定一个并动态维护另 ...

随机推荐

  1. Excel双击“单元格”后,自动跳转到相关“工作表

    Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)If Target.Column = ...

  2. VS2015中无法查找或打开 PDB 文件

    装载:https://blog.csdn.net/aalonso/article/details/90672072 MFCApplication1.exe"(Win32): 已加载" ...

  3. 【学习笔记】Polya定理

    笔者经多番周折终于看懂了\(\text{Burnside}\)定理和\(\text{Polya}\)定理,特来写一篇学习笔记来记录一下. 群定义 定义:群\((G,·)\)是一个集合与一个运算·所定义 ...

  4. ✅Vue选择图像

    下载 Vue选择图像Vue选择图像 Vue 2.用于从列表中选择图像的组件 演示 https://mazipan.github.io/vue-select-image/ 安装 #纱 纱添加vue-se ...

  5. VUE 安装项目

    注意:在cmd中执行的命令 1,前提是安装了node.js 查看 npm 版本号 2,创建项目路径 mkdir vue cd vue 3,安装vue-cli (脚手架) npm install -个v ...

  6. WGS-84 to Web mercator

    function mercator_encrypt (wgsLat, wgsLon) {   var x = wgsLon * 20037508.34 / 180.;   var y = Math.l ...

  7. Vue学习 一 环境搭建

    Vue  ui  启动 创建一个新项目 包管理器 npm Bable 转换js 至低版本的支持(兼容低版本) TypeScript  对TypeScript  的支持  (暂时不需要) PWA    ...

  8. 多测师讲解自动化selenium___定位元素002___高级讲师肖sir

    高级自动化测试python+selenium教程手册 --高级讲师肖sir(Harm) 第 2 章8种定位方法 总结: selenium 的 webdriver 提供了八种基本的元素定位方法,前面六种 ...

  9. day13 Pyhton学习

    一.昨日内容回顾 生成器 本质就是迭代器 特点: 1.省内存 2.惰性机制 3.只能向前,不能反复 生成器函数 函数中包含yield. yield表示返回和return,分段执行一个函数 def fu ...

  10. 【编程学习笔记】如何组织构建多文件 C 语言程序!编程也有~

    优秀 Unix 程序哲学 首先,你要知道这个 C 程序是一个 Unix 命令行工具.这意味着它运行在(或者可被移植到)那些提供 Unix C 运行环境的操作系统中.当贝尔实验室发明 Unix 后,它从 ...