在考古的小鱼干很有气魄
在考古的小鱼干很有气魄
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在考古的小鱼干很有气魄的博客
全部文章
(共81篇)
题解 | #买房子#
#include <bits/stdc++.h> using namespace std; int main(){ int k,n; double target,cnt; while(cin>>n>>k){ cnt = n; target = 2...
2023-03-20
1
384
题解 | #全排列#
#include <bits/stdc++.h> #define MAX 7 using namespace std; vector<string> res; void fun(char s[],string list){ if(list.size() == strlen...
2023-03-20
1
409
题解 | #大整数的因子#
#include <bits/stdc++.h> #define MAX 31 using namespace std; //typedef long long ll; int main(){ string s; int data[MAX],res[MAX],len; vecto...
2023-03-20
1
357
题解 | #小白鼠排队#
#include <bits/stdc++.h> using namespace std; typedef struct { int w; string hat; }Shu; bool cmp(Shu a,Shu b){ if(a.w > b.w) return t...
2023-03-20
1
374
题解 | #查找#
#include <bits/stdc++.h> #define INF 0x3f3f3f3f using namespace std; int main(){ int n,m,tmp; vector<int> a,b; cin>>n; for(int ...
2023-03-18
1
367
题解 | #找最小数#
#include <bits/stdc++.h> #define INF 0x3f3f3f3f using namespace std; int main(){ int n,mina = INF,minb = INF,a,b; cin>>n; while(n--){ ...
2023-03-18
1
303
题解 | #复数集合#
#include <iostream> #include <vector> #include <algorithm> #include <cmath> using namespace std; int main() { vector<str...
2023-03-18
1
353
题解 | #查找#
#include <iostream> #include <string> #include <algorithm> using namespace std; int main() { string s; cin >> s; in...
2023-03-18
2
336
题解 | #树查找#
#include <bits/stdc++.h> #define MAX 1001 using namespace std; int main(){ int n; cin>>n; int data[MAX],len; for(int i = 1; i <= n...
2023-03-17
1
330
题解 | #打牌#
#include <bits/stdc++.h> using namespace std; int main(){ string pai,op; cin>>pai>>op; int len = op.size(); switch(len < 5) ...
2023-03-17
1
360
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页