imthewinger
imthewinger
全部文章
分类
归档
标签
去牛客网
登录
/
注册
imthewinger的博客
全部文章
(共33篇)
题解 | #成绩排序#
#include<iostream> #include<algorithm> using namespace std; //复习结构体 struct Student { char name[100]; int score; int order; };...
2023-03-14
0
235
题解 | #成绩排序#
#include<iostream> #include<algorithm> using namespace std; //复习结构体 struct Student { int stuNum; int score; }; const int maxN = ...
2023-03-14
0
273
题解 | #排序#
#include<iostream> #include<algorithm> using namespace std; //主要学一下sort函数 //毕竟正常机试不会让我自己实现一个排序算法吧 int main() { //sort //sort(fir...
2023-03-14
0
262
题解 | #xxx定律#
#include<iostream> using namespace std; int main() { int n; while (cin >> n) { if (n == 0) { break; }...
2023-03-14
0
202
题解 | #手机键盘#
#include<iostream> #include<string> using namespace std; //预处理 //由于每个按键上字母的数量不相同 //因此每个字母需要的按键次数很难直接通过数学公式计算 //可以用预处理策略,先将每个字母的按键次数记录在一个数...
2023-03-14
0
207
题解 | #剩下的树#
#include<iostream> using namespace std; const int MAXN =10001; int L,M; bool tree[MAXN]; int main(){ int h,l; while(scanf("%d %d",&L,&M)!=E...
2023-03-14
0
181
题解 | #日期累加#
#include<iostream> using namespace std; int daytab[2][31] = { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, 29, 31, 30, ...
2023-03-14
0
241
题解 | #打印日期#
#include<iostream> using namespace std; int daytab[2][31] = { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, 29, 31, 30, ...
2023-03-14
0
296
题解 | #今年的第几天?#
#include<iostream> using namespace std; //预处理出所有月份的天数并保存 //需要处理数据时,只用O(1)的时间复杂度读出稍加处理 int daytab[2][13] = { {0, 31, 28, 31, 30, 31, 30, 31,...
2023-03-13
0
250
题解 | #Hello World for U#
#include <iostream> #include <string> using namespace std; //int main() { // char str; // char output[30][30]; // while (scanf("%s", &...
2023-03-13
0
266
首页
上一页
1
2
3
4
下一页
末页