ManoCode
ManoCode
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ManoCode的博客
全部文章
(共34篇)
题解 | #密码翻译#
#include <iostream> #include <string> using namespace std; int main() { string s; getline(cin, s); for (int i = 0; i < ...
2024-08-22
0
91
题解 | #日志排序# 带注释版
#include <bits/stdc++.h> using namespace std; // 定义一个结构体用来存储记录信息 struct record { string name; // 记录中的人名 string startDay; // 开始日...
2024-08-22
0
95
题解 | #进制转换#
#include <bits/stdc++.h> using namespace std; // 字符串除法,将十进制str转换为x进制 string Divide(string str, int x) { int reminder = 0; // 保留余数 for (...
2024-08-22
0
88
题解 | #谁是你的潜在朋友#
#include <bits/stdc++.h> #include <cstring> using namespace std; int main() { int n, m; while (cin >> n >> m) { ...
2024-08-22
0
76
题解 | #查找学生信息# -map解法
#include <bits/stdc++.h> using namespace std; struct node { string id; string name; string sex; int age; }; int main() { i...
2024-08-22
0
89
题解 | #查找学生信息#
#include <iostream> #include <vector> using namespace std; struct node { string id; string name; string sex; int age; }; ...
2024-08-22
0
96
题解 | #10进制 VS 2进制#
#include <iostream> #include <string> #include <stack> using namespace std; string Divide(string s, int x) { int remainder = 0...
2024-08-22
0
84
题解 | #最大序列和#
#include <bits/stdc++.h> using namespace std; const int N = 1000010; long long dp[N]; long long a[N]; long long num; int main(){ int n; ...
2024-08-21
0
90
题解 | #今年的第几天?#
#include <bits/stdc++.h> using namespace std; bool run(int year){ if(year % 4 == 0 and year % 100 !=0 or year % 400 == 0) return true; ...
2024-08-21
0
81
题解 | #特殊乘法#
#include <bits/stdc++.h> using namespace std; int main(){ string a,b; while(cin >> a >> b){ int alen = a.length()...
2024-08-21
0
79
首页
上一页
1
2
3
4
下一页
末页