whoway
whoway
全部文章
分类
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
题解(126)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
TA的专栏
30篇文章
0人订阅
C语言三剑客
6篇文章
60人学习
第4章-”语义分析“
C和C++
8篇文章
1540人学习
二次训练STL
12篇文章
1147人学习
数学
4篇文章
1395人学习
全部文章
(共160篇)
next_permutaiton例题
#include<bits/stdc++.h> using namespace std; static const int maxn=1e5+5; char solve[maxn]; int main() { while( ~scanf("%s",solve) ) {...
next_permutation
2020-12-08
0
540
常用于命名的两个单词
一、单词 odd 奇数even 偶数 二、代码 #include<bits/stdc++.h> using namespace std; int main() { vector<int> solve(10); while( ~scanf("%d",&...
命名规范
2020-12-08
1
596
水题
#include<bits/stdc++.h> using namespace std; long long n; long long solve[5]; int main() { while( ~scanf("%lld",&n) ) { for...
2020-12-07
0
481
水题打表
#include<bits/stdc++.h> using namespace std; long long n; long long solve[31]; void init() { solve[0]=0; solve[1]=1; for(int i=2; i...
2020-12-07
0
502
String的使用
#include<bits/stdc++.h> using namespace std; int main() { string str; while( cin>>str ) { int len=str.size(); ...
2020-12-07
0
539
牛客也禁用gets了吗?
一、用gets出错的 编译条件:C++(clang++11) #include<bits/stdc++.h> using namespace std; static const int maxn=1e5+5; char solve[maxn]; int main() { l...
牛客OJ记录
2020-12-07
2
2043
题目样例是玄学
样例迷惑人 2 3 20 题目的意思根本用不到这个2,不需要告知几组样例,先前我面向样例编写,WA后面,觉得数据是不是按照题目文字意义来,马上AC了。。。 AC代码 #include<bits/stdc++.h> using namespace std; int main() { ...
2020-12-07
0
554
STL解法
STL解法 #include<bits/stdc++.h> using namespace std; int main() { vector<int> test(8); for(int i=0; i<8; ++i) { test...
2020-11-20
1
505
堆排序STL使用
堆排序 class Finder { public: int findKth(vector<int> a, int n, int K) { // write code here //假设int myints[] = {10,20,30,5,15...
2020-11-18
3
522
牛客编程巅峰赛S2第1场 - 青铜&白银场
牛客编程巅峰赛S2第1场 - 青铜&白银场 一、A 最小差值 A 最小差值传送门 自己给自己挖的坑:int rt=(1<<31)-1;//不能用0x3f3fPS:原因是测试数据范围很广 解法:排序+暴力 (1)本代码未能AC(测试时间2020.11.17比赛完) 本代码在比赛...
2020-11-17
2
688
首页
上一页
7
8
9
10
11
12
13
14
15
16
下一页
末页