Ⅲ_Dc
Ⅲ_Dc
全部文章
分类
题解(23)
归档
标签
去牛客网
登录
/
注册
Ⅲ_Dc的博客
你电求职小废物
全部文章
(共27篇)
题解 | #瞌睡-极简风滑动窗口#
#include<iostream> #include<stdio.h> #include<vector> using namespace std; int main(void) { int n,k; cin>>n>>k;...
C++
2022-03-07
0
495
题解 | #缩写##一行代码#
">#include<iostream> #include<stdio.h> using namespace std; int main(void) { for(string tmp;cin>>tmp; cout<<tmp[0]) ; ...
C++
2022-03-07
0
330
题解 | #最小众倍数#
//优化版 ">#include<stdio.h> #include<vector> #include<math.h> using namespace std; int SG(int x,int y) { int z = 0; int Big,S...
C++
2022-03-07
0
359
题解 | #一封奇怪的信#
//用一点写一点,不够,赋值100并换行 ">#include<iostream> #include<stdio.h> #include<vector> #include<map> using namespace std; int main(void...
C++
2022-03-07
0
405
题解 | #买苹果#
//贪心?买8个,最后求余数%8,余数为奇数,输出-1. //余数为偶,只会是2,4,6,0的情况,其中0和2只需要输出商n/8(把一袋8换6,总数不变)即可(但是要注意n=2,0的情况,应该-1),6,4,多换一袋8为6即可 ">#include<iostream> #include&...
C++
2022-03-06
0
426
题解 | #优雅的点-mp查平方差#
//if(mp.find(N-it->first)!=mp.end()) //不是说没有访问map<int,bool> 的 map[i] ,map[i]就是false //双for超时了 ">#include<iostream> #include<map> ...
C++
2022-03-05
0
465
题解 | #构造队列#
//用个map<int,int>或pair,按int 1...n顺序倒入队列,按题意算法模拟,给map【x】赋值再打印即可 ">#include<vector> #include<iostream> #include<stdio.h> #include...
C++
2022-03-05
0
407
题解 | #洗牌-用双栈#
//偶数牌,洗牌算法,一开始给数组预开辟的容量写成n了,应该是2n,同时处理两半n ">#include<iostream> #include<vector> #include<stack> using namespace std; int main(void)...
C++
2022-03-05
0
417
题解 | #小易喜欢的单词#
//关于两个子序列条件找到4个索引位置,比较即可 ">#include<iostream> #include<stdio.h> #include<map> using namespace std; int main(void) { string str;...
C++
2022-03-04
0
343
题解 | #不要二#
//以为和八皇后一样要回溯其实不是 //直接开摆就行 #include <iostream> #include <stdio.h> #include <vector> using namespace std; class solution { publi...
C++
2022-03-04
0
329
首页
上一页
1
2
3
下一页
末页