codeforces
_王泥煤
这个作者很懒,什么都没留下…
展开
-
CF round#669 div2 B题
B. Big Vova 题目链接 time limit per test: 1 second memory limit per test: 256 megabytes input: standard input output: standard output Alexander is a well-known programmer. Today he decided to finally go out and play football, but with the first hit原创 2020-09-12 21:31:42 · 496 阅读 · 0 评论 -
CF round#669 div2 A题
A. Ahahahahahahahaha 题目链接 time limit per test: 1 second memory limit per test: 256 megabytes input: standard input output: standard output Alexandra has an even-length array aaa, consisting of 000s and 111s. The elements of the array are enumer原创 2020-09-12 21:30:27 · 389 阅读 · 0 评论 -
CF round#669 div2 C题
C. Chocolate Bunny 题目链接 time limit per test: 1 second memory limit per test: 256 megabytes input: standard input output: standard output This is an interactive problem. We hid from you a permutation ppp of length nnn, consisting of the elements原创 2020-09-12 21:32:50 · 288 阅读 · 0 评论 -
Codeforces Round #499 (Div. 2) A
题目大意 给你一个长度为n的只由小写字母组成的字符串,从中挑出k个字母,使得其任意两个字母的差值不超过2,如样例1中的xyabd,可以选择adx,但是不能选择abx,然后输出所选择的k个字母的权值之和,a的权值为1,b的权值为2,z的权值为26 纯粹的模拟,写的丑,但是数据范围很小所以根本没考虑能不能写更好。。。 #include<bits/stdc++.h> #define...原创 2018-07-27 10:20:01 · 261 阅读 · 0 评论 -
Codeforces Round #499 (Div. 2) B
题目大意 有n个人和m份食物,每份食物都有其种类,第i份食物的种类为ai,每个人每天吃一份食物,且每个人几天都只能吃同一种食物,不同的人可能吃同一种食物,问这m份食物能吃多久 如样例: 4 10 1 5 2 1 1 1 2 5 7 2 表示4个人,其中种类为1的食物有4份,种类为2的食物有3份,种类为5的食物有2份,种类为7的食物有1份。只需要让前两个人都吃第一种食物,第三个人吃第二种食...原创 2018-07-27 10:25:02 · 144 阅读 · 0 评论 -
Codeforces Round #499 (Div. 2) C
题目大意 做火箭去火星,经过一段路径,问要带多少燃料。 经过的路径为1->2->3->…->n->1(注意不是n->n-1->n-2->…->1) 在第i个星球上,1吨燃料可以起飞ai吨的重量,可以降落bi吨的重量,认为起飞和降落是瞬移,比如10吨的火箭和8吨的燃料共18吨,在bi=6的星球上降落,消耗3吨燃料,降落后质量为15吨 问最...原创 2018-07-27 10:42:30 · 171 阅读 · 0 评论