Alice, Bob and Candies + 题目链接:(https://codeforces.com/contest/1352/problem/D) 涉及知识点: + 思维/双指针 solution + $我们可以发现Alice是从左向右,Bob是从右向左进行吃糖果 ,这样的问题我们可以用双指 ...
分类:
其他好文 时间:
2020-05-10 12:58:11
阅读次数:
52
A. Candies and Two Sisters(水题) "所有题目链接" 代码 B. Construct the String(简单构造) 代码 D. Anti Sudoku(水题) ...
分类:
其他好文 时间:
2020-04-25 23:09:40
阅读次数:
58
A. Candies(简单公式转化) "题目链接" 思路 题意:给我一个表达式 :$x+2x+4x+8x+...+2^{k 1}=n,n=2$,给了我们n的值让我求是否存在 一个x值使上登山成立? 分析:我可以对公式进行一些变形:$x=n/(1+2+4+..+2^{k 1})$,由于我们知道$n i ...
分类:
其他好文 时间:
2020-04-25 19:09:51
阅读次数:
67
A Candies "题目链接" 观察这个式子左边,这玩意就等于 $x(2^k 1)$。于是我们枚举所有的 $2^k 1$,看看是否存在 $x$ 即可。 cpp include include include include using namespace std; int T, n; int a[ ...
分类:
其他好文 时间:
2020-04-25 10:30:47
阅读次数:
54
"A. Candies and Two Sisters" + 将糖果分为a,b两份,且a t; while(t ){ cin n; cout t; while(t ){ cin n a b; for(int i = 0; i book; int main(void){ ios::sync_with_ ...
分类:
其他好文 时间:
2020-04-22 13:42:51
阅读次数:
85
A - Candies 题目大意:找到一个x ,存在k>1,使x + 2x + 4x + ? + 2^(k?1)x = n。 即找到x,k满足这个式子:(2^k-1)*x = n,可以枚举k 判断(2^k-1)|n #include <bits/stdc++.h> using namespace s ...
分类:
其他好文 时间:
2020-04-22 13:30:08
阅读次数:
66
题目链接:https://codeforces.com/contest/1343 A Candies 随便做做。 B Balanced Array 随便做做。 D Constant Palindrome Sum 题意:如题目的名字,给一个 $n$ 个数字的数组,要保持对称位置的和恒为常数,但是每个数 ...
分类:
其他好文 时间:
2020-04-22 09:23:49
阅读次数:
69
A. CRB and String 考虑 $S$ 能变成 $T$ 首先需要 $S$ 是 $T$ 的子序列且 $S_0=T_0$ 然后考虑不同的限制会影响什么,发现只会影响最开始连续一段相同的字符 那么只需要 $T$ 开头连续相同字符数 $\le$ $S$ 开头连续相同字符数 B. Fleet of ...
分类:
其他好文 时间:
2020-04-19 10:55:37
阅读次数:
61
Problem : Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one c ...
分类:
其他好文 时间:
2020-04-17 00:23:13
阅读次数:
77
"A. Candies and Two Sisters" 签到题,直接输出即可 代码 include define INF 0x3f3f3f3f typedef long long ll; using namespace std; inline void read(int &p) { p=0;int ...
分类:
其他好文 时间:
2020-04-15 00:35:19
阅读次数:
73