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篇)
gets被禁止后使用cin.getline
#include<bits/stdc++.h> using namespace std; const int maxn=1e5+5; char solve[maxn]={0}; int main() { while( cin.getline(solve,maxn) ) ...
输入输出格式记忆
2021-03-18
0
722
set的使用
#include<bits/stdc++.h> using namespace std; int main() { int n; while( ~scanf("%d",&n) ) { map<int,int> mp; ...
set
2021-03-18
0
459
多组输入输出
#include<bits/stdc++.h> using namespace std; int main() { int one,two; while( ~scanf("%d",&one) ) { set<int> solv...
C和C++输入输出
2021-03-18
0
519
注意byte如果是负数,这样的比特也要考虑
算法 方法2我用的『前缀和』 方法1、参考牛油bitset 参考其他牛油 while (cin >> n) { int ans=0,cnt=0; bitset<32> bs(n);//学习这里 方法2、我模拟的bitset #include<bits/std...
bitset
2021-03-18
1
796
题目意思又表述不清楚
Q:如果数据超过1e3+9呢? A:那么,可能sum就会溢出 Q:输出的浮点数精度是多少位呢? A:莫不是题目中样例告诉我们 #include<bits/stdc++.h> using namespace std; int main() { int tag=0; l...
2021-03-18
0
635
精度设置
一、其他方式 牛顿迭代公式 梯度下降求立方根。 二、AC代码 #include<bits/stdc++.h> using namespace std; int main() { double n; while( ~scanf("%lf",&n) ) ...
数学
2021-03-18
1
536
题目意思『不明确』
题意中没有说明,元素相同不?1222233 但是我用的是『无重复元素』 测试 #include<bits/stdc++.h> using namespace std; int n,k; int main() { while( ~scanf("%d%d",&n,&a...
2021-03-18
0
525
永生的兔子-斐波拉契数列
#include<bits/stdc++.h> using namespace std; long long solve( long long n ) { if( 0==n ) return 0; if( 1==n ) return 1; if( 2==n ) ...
2021-03-18
0
511
多组输入输出样题
C++编译器被禁止用gets #include<bits/stdc++.h> using namespace std; int main() { char solve[1030]={0}; while( cin.getline(solve,1030) ) {...
输入输出格式记忆
2021-03-18
0
458
最小公倍数模板
注意溢出 #include<bits/stdc++.h> using namespace std; int a,b; int gcd( int a, int b ) { if( a<b ) { swap(a,b); } if( 0...
数学
2021-03-18
0
434
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页