Spiker
Spiker
全部文章
题解
未归档(2)
读书笔记(3)
归档
标签
去牛客网
登录
/
注册
Spiker的博客
全部文章
/ 题解
(共28篇)
A1006 Sign In and Sign Out
#include<stdio.h> #include<string.h> /* 思路: 1.创建结构性变量pNode,内部成员为id和时间; 2.创建比较函数great(a,b),a的时间>b的时间话返回true; 3.输入时,把签到时间和签...
2021-04-13
0
437
B1004 成绩排名
方法1:用数组下标来表示成绩,输出时,按照stu[maxgrade]输出即可: #include<cstdio> #include<algorithm> #include<cstring> using namespace std; struct Student...
2021-04-12
0
539
B1041 考试座位号
注意点: 这题容易想到用结构体存储学生的信息; 但是可能想不到直接用数组的坐标来表示学生的试机座位,这样的话就可以少一个成员变量; #include<cstdio> struct Student{ long long id; int examseat; }stu[1...
2021-04-12
0
554
问题 F: A+B和C (15)
#include<stdio.h> #include<string.h> using namespace std; int main(){ int n; scanf("%d",&n); long long a,b,c; for...
2021-04-11
0
478
问题 G: 数字分类 (20)
#include<cstdio> using namespace std; /* 思路: 1.用两个数组表示输出,ans[]表示结果,count[]用来计数 2.注意此网站是多点测试,所以ans[]和count[]的初始化要放在while里面 */ int ma...
2021-04-11
0
633
问题 H: 部分A+B (15)
这个题做法很多,这里选择比较简单的一种: #include<stdio.h> #include<string.h> using namespace std; int main(){ int a,da,b,db; while(scanf("%d %d %d...
2021-04-11
0
520
问题 I: 锤子剪刀布 (20)
易错点: 注意scanf("%c")会把换行符吃掉,会导致接收输入出错,所以要用getchar吃掉换行符; #include<cstdio> #include<algorithm> using namespace std; char mp[3] = {'B','C',...
2021-04-11
0
565
问题 E: Shortest Distance (20)
#include<cstdio> #include<algorithm> using namespace std; int main(){ int n; scanf("%d",&n); int sum = 0; int d[10...
2021-04-11
0
491
问题 D: 比较奇偶数个数
#include<cstdio> #include<cstring> int main(){ int n; while(scanf("%d",&n) != EOF){ int count = 0; int a...
2021-04-11
0
535
问题 C: 特殊乘法
这种题有多种写法: 第一种是用字符串来处理; 第二种是直接用数字处理,通过除法和取模运算来获得每一位; 第三种是,我们发现要算的数其实是第一个数各个位数的和与第二个数各个位数的和的积; 方法一:字符串代码: #include<stdio.h> #include<string.h...
2021-04-11
0
572
首页
上一页
1
2
3
下一页
末页