ManoCode
ManoCode
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ManoCode的博客
全部文章
(共34篇)
题解 | #走迷宫#
#include <iostream> #include <queue> #include <vector> #include <cstring> using namespace std; const int N = 1010; char mpt[N...
2024-09-05
0
80
题解 | #完数VS盈数#
#include <bits/stdc++.h> #include <cstdio> #include <iostream> using namespace std; int sum(int x){ int sum = 0; for(int j ...
2024-09-03
0
69
题解 | #求root(N, k)#
#include <bits/stdc++.h> using namespace std; //快速幂模板:求x ^ y long long QuickPower(long long x, long long y, int n) { long long ans = 1; ...
2024-09-03
0
83
题解 | #求root(N, k)#
#include <bits/stdc++.h> using namespace std; int QuickPower(int x, int y, int n) { //取x^y的n进制的个位数 int ans = 1; while (y) { if (...
2024-09-02
0
84
题解 | #最小邮票数#
#include <bits/stdc++.h> using namespace std; const int N = 20; int v[N]; int m,n,minK; //总值,邮票数量,最小数量 //当前的邮票编号,当前总价值,当前邮票数量 void dfs(int ind...
2024-09-02
0
96
题解 | #素数判定#
#include <bits/stdc++.h> #include <cmath> using namespace std; int main(){ int x; cin >> x; if(x < 2) cout << ...
2024-08-22
0
88
题解 | #小白鼠排队# - map小题大做法
#include <bits/stdc++.h> using namespace std; struct compare{ bool operator()(const int& a, const int& b) const{ return a &...
2024-08-22
0
120
题解 | #中位数#
#include <bits/stdc++.h> using namespace std; int main(){ int n; while(cin >> n){ if(n == 0) break; int a...
2024-08-22
0
94
题解 | #最简真分数#
#include <bits/stdc++.h> using namespace std; int check(int a,int b){ if(b == 0) return a; else return check(b , a % b); } int main(){...
2024-08-22
0
106
题解 | #最大公约数#
#include <bits/stdc++.h> using namespace std; int gcd(int a,int b){ return b == 0 ? a : gcd(b , a % b); } int main(){ int a,b; wh...
2024-08-22
0
104
首页
上一页
1
2
3
4
下一页
末页