题目

这道题的意思是让两个多项式相乘。

做这道题的时候我吸取前面的教训,直接用的数组。就是按照数学中怎么多项式相乘的。

#include<cstdio>
#include<cstring> int main()
{
double a[], b[], c[];//分别存多项式指数以及系数
int n, temp_N;
memset(a, , * sizeof(double));
memset(b, , * sizeof(double));
memset(c, , * sizeof(double));
double temp_aN;
scanf("%d", &n);
while (n--) {
scanf("%d %lf", &temp_N, &temp_aN);
a[temp_N] = temp_aN;
}
scanf("%d", &n);
while (n--) {
scanf("%d%lf", &temp_N, &temp_aN);
b[temp_N] = temp_aN;
} //相乘
for (int i = ;i < ;i++) {
for (int j = ;j < ;j++) {
c[i + j] += a[i] * b[j];
}
}
//数数有几项
int count = ;
for (int i = ;i >=;i--) {
if (c[i] != ) count++;
}
printf("%d", count);
for (int i = ;i >= ;i--) {
if (c[i] != ) printf(" %d %.1lf",i,c[i]);
}
return ;
}

我感觉挺复杂的。遍历了所有元素。

不过。。。牛客和PATOJ都过了,也没说超时。

我看了书上的答案后,他的比我的简单,他是在输入第二个多项式的同时,嵌套一个循环去相乘。

其他的都差不多。还是得活学活用呀。

 #include<cstdio>
struct Student {
long long ID;
int tryNum;
int examNum;
}data[];
int main() {
int n,m,i;
scanf("%d", &n);
for (i = ;i < n;i++) scanf("%lld%ld%ld", &data[i].ID, &data[i].tryNum, &data[i].examNum);
scanf("%d", &m);
for (i = ;i < m;i++) {
int find_tryNum;
scanf("%d", &find_tryNum);
for (int j = ;j < n;j++) {
if (data[j].tryNum == find_tryNum) printf("%lld %d\n", data[j].ID, data[j].examNum);
}
}
return ;
}

这道题很简单。但我看了教材的算法之后,发现可以直接令结构体的下标为试机座位。不用遍历一下去找了。

笨死了。

#include<cstdio>
#include<cstring> int main(){
char max_name[],min_name[],max_ID[],min_ID[],temp_name[],temp_ID[];
int n,max_score=, min_score=,temp_score;
scanf("%d", &n);
while (n--)
{
scanf("%s%s%d", temp_name, temp_ID, &temp_score);
if (temp_score > max_score) {
max_score = temp_score;
strcpy(max_name, temp_name);
strcpy(max_ID, temp_ID);
}
if (temp_score < min_score) {
min_score = temp_score;
strcpy(min_name, temp_name);
strcpy(min_ID, temp_ID);
}
}
printf("%s %s\n", max_name, max_ID);
printf("%s %s\n", min_name, min_ID);
return ;
}

这个我为啥没想到用结构体。。。那么傻的建立了那么多字符数组,唉。。。。

05-06 19:08