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篇)
坑点
一、注意事项 if( 0==sum ) { printf("-1\n"); } 二、AC代码 #include<bits/stdc++.h> using namespace std; ...
2021-03-27
0
479
水题
#include<bits/stdc++.h> using namespace std; int n; int main() { while( ~scanf("%d",&n) ) { while( n-- ) { ...
2021-03-27
0
513
反转链表+双指针
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} ...
双指针
2021-03-26
0
625
2个坑点
一、2个注意事项 1、关于x和y的范围,是int的最小到最大,所以如果是int*int可能会溢出,所以要用long longPS:这个题目如果要进阶,可以修改x和y的范围是long long,那么就要用大数,目前本题不需要大数 2、关于,最大的『正方形』这个如何获得,注意,排序条件不能是a.x和b...
2021-03-26
0
562
简单排序
#include<bits/stdc++.h> using namespace std; const int maxn=1e3+5; int solve[2][maxn]; int n; int main() { while( ~scanf("%d",&n) ) ...
2021-03-24
0
578
双指针
#include<bits/stdc++.h> using namespace std; const int maxn=1e5+5; vector<string> ret; inline void solve(const string & str ) { ...
双指针
2021-03-24
0
466
题目说明和样例不符合
测试样例是以『题目说明』为标准测试的 测试数据输出应该是下面的... 2.875000 0.031250 #include<bits/stdc++.h> using namespace std; int main() { int n; double num; ...
2021-03-18
0
550
找规律+打表
#include<bits/stdc++.h> using namespace std; //数列求和 int tag[101]; void init() { for(int i=0; i<101; ++i) { tag[i]=(i+1)*i/2...
2021-03-18
0
533
反向遍历写dp数组+多1行和多1列哨兵简化代码
#include<bits/stdc++.h> using namespace std; int dp[10][10]; void solve(int n, int m) { memset( dp, 0, sizeof( dp ) ); //行数n-0,列数m-0 ...
哨兵
2021-03-18
0
641
打表+找规律+模拟
#include<bits/stdc++.h> using namespace std; int solve[101][101]; void init() { int tag=1; while( tag<=5050 ) { for( int...
2021-03-18
1
534
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页