第一次五分钟过了cf A https://codeforces.com/contest/1270/problem/A 思路:谁拿到最大的牌即赢 官方: #include<bits/stdc++.h> #define ll long long using namespace std; const in ...
分类:
其他好文 时间:
2020-01-08 00:30:23
阅读次数:
80
http://codeforces.com/contest/1270 辣鸡比赛毁我青春 A 比较最大的牌即可 B 找相邻两个差的绝对值 =2的数 如果不存在,则每次只能±1或不变,必然不存在合法区间 C 设和为s1,异或和为s2 一种方法是把s2 2,那么加2\^x等于异或2\^(x+1) 从后往前 ...
分类:
其他好文 时间:
2020-01-04 14:42:06
阅读次数:
83
构造题好评~~,虽然这把崩了~~ "原题解" "A" 题意 二人游戏,一个人有 $k_1$ 张牌,另一个人 $k_2$ 张,满足 $2\le k_1+k_2=n\le 100$,每张牌上有一个数,保证所有的牌上的数互不相同且在 $[1,n]$ 内 每回合双方都会出一张牌,牌上数小的一方的牌会给牌上数 ...
分类:
其他好文 时间:
2020-01-03 23:24:33
阅读次数:
95
Layui官方网站 创建项目 创建static目录 将下载的项目复制到static目录中 创建index.html 创建商品页面 good.html ...
分类:
其他好文 时间:
2020-01-03 00:36:02
阅读次数:
71
1. The collection of Linkun's [1]:1.1 How are you doing.This is a very good habit, to greet my friend on the road, so that you and I will not appear s ...
分类:
其他好文 时间:
2020-01-01 20:32:43
阅读次数:
77
"比赛链接" "A. Card Game" 显然,二者最大值大的人赢。 ${\frak{code:}}$ "C. Make Good" 异或与和进行比较不好处理,考虑先加一个数$xor$等于原数组的异或和,使异或值等于零,再加上$sum+xor$即可完成构造。 (因为$LL$输出$\%lld$ $W ...
分类:
其他好文 时间:
2020-01-01 10:02:17
阅读次数:
58
Mobile accounting and financial management software can be said to be a good assistant for the confused people. No need to worry about dealing with th ...
分类:
其他好文 时间:
2019-12-31 14:19:43
阅读次数:
68
题意:给定一个长度为n的序列,计算得他们的和是S,异或和是P,你可以往序列中加入三个数,最后令S==2*P成立。 思路1:因为一个数异或上自己就是0,则先加一个P,则变成 S+P 和 0 ,再加一个 S+P,因为0异或任何数=任何数,所以就变成了2*(S+P)和S+P,满足题意。 思路2:若S<2P ...
分类:
其他好文 时间:
2019-12-31 12:36:04
阅读次数:
79
"A. Card Game (CF 1270 A)" 题目大意 两个人各持有$k_1$、$k_2$张牌,牌序号唯一且在范围$1$~$n$其中$n=k_1+k_2$。一次操作两个各亮出一张牌,谁牌序号大,谁拿对方的牌,最后没牌者输,问先手是否必赢。 解题思路 很显然谁持有最大牌谁赢...... 但是$ ...
分类:
其他好文 时间:
2019-12-30 23:31:46
阅读次数:
177
Let's call an array a1,a2,…,ama1,a2,…,am of nonnegative integer numbers good if a1+a2+?+am=2?(a1⊕a2⊕?⊕am)a1+a2+?+am=2?(a1⊕a2⊕?⊕am), where ⊕⊕denotes th ...
分类:
其他好文 时间:
2019-12-30 22:58:39
阅读次数:
153