在考古的小鱼干很有气魄
在考古的小鱼干很有气魄
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在考古的小鱼干很有气魄的博客
全部文章
(共84篇)
题解 | #旋转矩阵#
#include <bits/stdc++.h> #define MAX 10 using namespace std; //上下翻转 void Topfilp(int (&data)[MAX][MAX],int size){ for(int i = 0; i < size ...
2023-03-16
2
444
题解 | #C翻转#
#include <bits/stdc++.h> #define MAX 50 using namespace std; //上下反转 void Topfilp(int (&data)[6][6],int x,int y,int size){ for(int i = 0; i &l...
2023-03-15
1
353
题解 | #素数#
#include <bits/stdc++.h> using namespace std; bool issu(int x){ for(int j = 2; j < x; j++){ if(x % j == 0) return false; } retur...
2023-03-15
2
326
题解 | #对称平方数#
#include <bits/stdc++.h> using namespace std; bool ispalindrome(int x){ stack<int> s; queue<int> q; while(x){ s.push(x % 10); ...
2023-03-15
1
407
题解 | #邮票#
#include <bits/stdc++.h> using namespace std; int main(){ set<float> st; for(int i = 0; i <= 5; i++){ for(int j = 0; j <= 4; j+...
2023-03-15
5
294
题解 | #反序相等#
#include <bits/stdc++.h> using namespace std; string fun(int x){ string s = to_string(x); reverse(s.begin(),s.end()); return s; } int mai...
2023-03-15
0
338
题解 | #完数与盈数#
#include <bits/stdc++.h> using namespace std; int main(){ vector<int> wanshu,yingshu,tmp; for(int i = 2; i <= 60; i++){ for(int j...
2023-03-15
1
355
题解 | #加法等式#
#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c; for(a = 0; a <= 5; a++){ for(b = 0; b <= 5-a; b++){ for(c = 0...
2023-03-15
0
308
题解 | #单词识别#
#include <iostream> #include <map> #include <set> #include <vector> using namespace std; int main(){ set<string> st; ...
2023-03-15
1
358
题解 | #分组统计#
#include <bits/stdc++.h> #define MAX 1000 using namespace std; int main(){ int m,n; int v[MAX],index[MAX]; set<int> s1; //去重排序用 set&l...
2023-03-14
2
361
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页