Metatro
Metatro
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Metatro的博客
全部文章
(共23篇)
题解 | 百万富翁问题
#include <iostream> #include<cmath> using namespace std; int main() { long long bwfw=0; long long msr=0; for(int i=0;i<30;...
2026-03-19
0
7
题解 | 最小长方形
#include <iostream> #include<vector> #include <algorithm> using namespace std; int main() { int x,y; int ld[2]={0,0}; ...
2026-03-19
0
7
题解 | 计算两个矩阵的乘积
#include <iostream> #include<vector> using namespace std; int main() { vector<int> a(2*3); vector<int> b(3*2); ve...
2026-03-19
0
7
题解 | 子串计算
#include <iostream> #include<bits/stdc++.h> using namespace std; int main() { string str; while (cin >> str) { // 注意 while ...
2026-03-19
0
8
题解 | 学分绩点
#include <iostream> #include <vector> using namespace std; double poirev(double a) { if(a>=90&&a<=100) return 4; ...
2026-03-19
0
9
题解 | 打印极值点下标
#include <iostream> #include <vector> using namespace std; int main() { int k; while (cin >>k) { // 注意 while 处理多个 case ...
2026-03-18
0
7
题解 | 位操作练习
#include <iostream> #include <cmath> #include <bitset> using namespace std; int main() { unsigned short a,b; while(cin>&...
2026-03-18
0
9
题解 | 特殊乘法
#include <iostream> using namespace std; int main() { string a,b; while (cin >> a >> b) { // 注意 while 处理多个 case lon...
2026-03-18
0
7
题解 | 小白鼠排队
#include <iostream> #include<algorithm> #include <string.h> using namespace std; typedef struct{ int kg; string color; }mou...
2026-03-18
0
6
题解 | skew数
#include <iostream> #include<cmath> using namespace std; int main() { string str; while (cin >>str) { // 注意 while 处理多个 cas...
2026-03-17
0
11
首页
上一页
1
2
3
下一页
末页