whoway
whoway
全部文章
题解
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
全部文章
/ 题解
(共124篇)
多组输入输出
#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
516
永生的兔子-斐波拉契数列
#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
pair的使用
#include<bits/stdc++.h> using namespace std; int myHash[256]; bool cmp( pair<int,int> a, pair<int,int> b ) { if( a.second!=b.s...
STL-pair
2021-03-18
0
443
堆排序样例
一、设计特殊样例+常规样例 3333 41314 二、AC代码 #include<bits/stdc++.h> using namespace std; int n,k; vector<int> solve; int main() { while( ~scanf("...
heap
2021-03-15
0
599
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页