随笔分类 -  其它 -- 构造

摘要:Codeforces Round #542 [Alex Lopashev Thanks-Round] (Div. 2) 题目链接:https://codeforces.com/contest/1130 A. Be Positive 题意: 给出n个数,看是否正数的个数过半或者负数的个数过半。 题解: 阅读全文
posted @ 2019-02-25 18:59 heyuhhh 阅读(314) 评论(0) 推荐(0) 编辑
摘要:Codeforces Round #531 (Div. 3) 题目总链接:https://codeforces.com/contest/1102 A. Integer Sequence Dividing 题意: 给一个数n,然后要求你把1,2.....n分为两个集合,使得两个集合里面元素的和的差的绝 阅读全文
posted @ 2019-01-10 12:19 heyuhhh 阅读(238) 评论(1) 推荐(0) 编辑
摘要:D. Array Restoration 题目链接:https://codeforces.com/contest/1023/problem/D 题意: 给出一个序列,现在要求对一个全为0的序列执行q次操作,每次操作都要选定一段区间然后将区间上面的值变为i(i为操作的次数)。最终使得0序列变为之前给出 阅读全文
posted @ 2018-12-26 20:04 heyuhhh 阅读(151) 评论(0) 推荐(0) 编辑
摘要:A. Definite Game 题目链接:https://codeforces.com/contest/1081/problem/A 题意: 给出一个数v,然后让你可以重复多次减去一个数d,满足v%d!=0,问最后可以得到最小的是多少。 题解: 除开v=2输出2,其余直接输出1就行了= =/ 代码 阅读全文
posted @ 2018-12-18 08:17 heyuhhh 阅读(139) 评论(0) 推荐(0) 编辑
摘要:题目链接:https://codeforces.com/contest/1093 A. Dice Rolling 题意: 有一个号数为2-7的骰子,现在有一个人他想扔到几就能扔到几,现在问需要扔多少次,能使扔出的总和等于xi。 题解: 由于是special judge,模拟一下搞搞就行了= = 代码 阅读全文
posted @ 2018-12-18 07:55 heyuhhh 阅读(222) 评论(0) 推荐(0) 编辑