amuleter
amuleter
全部文章
算法
Java(10)
操作系统(8)
未归档(21)
杂项(11)
计算机组成(3)
计算机网络(4)
归档
标签
去牛客网
登录
/
注册
roccoshi的进阶之路
light
全部文章
/ 算法
(共27篇)
Codeforces Round #648 (Div. 2)
链接 : https://codeforces.com/contest/1365/problems problem A 统计可用的行和列的最小值, 模2输出即可 /* * Author: RoccoShi * Time: 2020-06-07 22:35:02 */ #include &...
rocco-----codeforce
2020-06-08
0
483
[每日一题2020.06.08]洛谷P1605 DFS
今天cf又杯具的只写出2题, 虽然AB题20分钟左右就搞定了, 但是CD写了2个小时也没写出来 D题我用到了DFS, 虽然必不正确, 但是我至少发现了一个问题, 那就是我连DFS都忘了, 于是怒找DFS板子写一写... 题面见https://www.luogu.com.cn/problem...
rocco------每日一题
2020-06-08
0
591
[每日一题2020.06.07]codeforces Round #627 (Div. 3)
problem A /* * Author: RoccoShi * Time: 2020-06-07 19:37:51 */ #include <bits/stdc++.h> using namespace std; typedef long long ll; int mai...
rocco------每日一题
2020-06-07
0
414
Codeforces Round #647 (Div. 2)
Problem A https://codeforces.com/contest/1362/problem/A 判断x/y是不是2的k次方, 如果是 k/3 + (k%3)/2 + (k%3%2)即为答案 #include<bits/stdc++.h> using na...
rocco-----codeforce
2020-06-05
0
401
Codeforce Round #643 #645 #646 (Div2)
codeforce Round #643 #645 #646 div2 Round #643 problem A #include<bits/stdc++.h> using namespace std; #define ll long long ll findmin(ll x){...
rocco-----codeforce
2020-06-01
0
428
常用的排序
#include<bits/stdc++.h> using namespace std; int array[15]={0,1,9,3,5,4,6,8,7,10,2}; void swap(int *arr,int i,int j){ int temp=arr[i]; arr[i]=...
rocco-----算法
2020-06-01
0
402
xdoj 2020校赛复盘
平时写东西都不喜欢复盘,这肯定不是一个好习惯,感觉每次花好几个小时甚至好几天写题目然后没写出来也不去看题解是一种很蠢的行为( 花了这么久时间打校赛,虽然水平很low,数据结构也不太会用,还是记录一下自己写的东西吧。 A 题面: 解释: 输入两行字符串之后有n个长度相同的字符串输入,判断和两个...
rocco-----算法
2020-06-01
0
381
首页
上一页
1
2
3
下一页
末页