CF题解
遇见生活222
此号不用
展开
-
Codeforces Round #688 (Div. 2)
题目描述:A题直接看样例~样例31 213 43 21 3 42 49 142 7 16 28 33 57 59 86 993 9 14 19 25 26 28 35 41 59 85 87 99 100013算法1(思维) O(n)O(n)O(n)因为他们发生碰撞的时候肯定是在(1,1),(2,2)·····,那么只需要知道一共有多少个不同的数,那么这些数肯定不会发生碰撞,而之前的为n + m,之后为size,答案就是n + m - size时间复杂度 O(n原创 2020-12-15 00:00:55 · 222 阅读 · 0 评论 -
2018沈阳站
文章目录C. Insertion Sort总结C. Insertion Sort题目链接:https://vjudge.net/problem/Gym-101955C/origin优秀题解:https://blog.csdn.net/qq_36258516/article/details/83315705总结题目还是很难的~原创 2020-12-07 18:24:33 · 235 阅读 · 0 评论 -
2018-2019 Asia Nanjing Regional Contest个人题解
文章目录18年南京赛个人题解(无代码)A - Adrien and AustinG - PyramidI - Magic PotionJ - Prime GameK - Kangaroo Puzzle总结18年南京赛个人题解(无代码)A - Adrien and Austin博弈,也就是个思维题,比赛的时候和队友相互博弈了一下,然后就A出来了G - Pyramid打表,然后通过差分找出规律优秀题解:https://blog.csdn.net/qq_41746268/article/det原创 2020-12-07 17:50:49 · 296 阅读 · 0 评论 -
Codeforces Beta Round #73 (Div. 2 Only)
文章目录前言一、题目链接1.[A. Chord](https://codeforces.com/contest/88/problem/A)2.[B. Keyboard](https://codeforces.com/contest/88/problem/B)3.[C. Trains](https://codeforces.com/contest/88/problem/C)4.[D. Vasya and Types](https://codeforces.com/contest/88/problem/D)总结原创 2020-12-07 14:27:08 · 255 阅读 · 0 评论 -
Codeforces Round #672 (Div. 2)(A、B、C1、D)
题目链接:http://codeforces.com/contest/1420/problem/A涉及知识点:思维solution题意大概就是使用不超过 n*(n - 1) / 2 - 1次操纵使其完全递增其实其只要不是完全递减的序列就好了std:#include <iostream>using namespace std; int main(){ int t; int n; cin >> t; .原创 2020-09-29 23:39:32 · 140 阅读 · 0 评论 -
D. Rescue Nibel!(优先队列)
树链博弈题目链接:http://codeforces.com/contest/1420/problem/D###涉及知识点:贪心/思维组合数取模solution题意大概就是有多少个区间有公共的区间的组合数std:#include <bits/stdc++.h>#include <algorithm>using namespace std;typedef pair<int,int>PII;typedef long long LL;p原创 2020-09-29 17:58:10 · 145 阅读 · 0 评论 -
Codeforces Round #635 (Div. 2)
https://blog.csdn.net/LiangNiuMu/article/details/106410349原创 2020-06-02 10:01:20 · 127 阅读 · 0 评论 -
D. Alice, Bob and Candies
Alice, Bob and Candies题目链接:https://codeforces.com/contest/1352/problem/D题意:Alice是从左边开始吃,而Bob从右边开始吃,两个人轮流吃,Alice先开始,下一次吃的人要比上一次吃的人多,最后求出两个人每个人吃了多少颗糖果,以及轮流了多少次;涉及知识点:简单模拟solution:做法较多做法较多做法较多std:#include <iostream>using namespace std;原创 2020-05-10 09:40:46 · 218 阅读 · 0 评论