主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
可可爱爱草莓派
2024年8月30日 16:20
map解法
P1177
回复 0
|
赞 0
|
浏览 987
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; while(cin >> n >> m){ map<int,int> mp; int a[n] ; int x; fo...
我与代码的故事
2024年4月25日 18:06
查找学生信息 (多组测试输入)题解:
P1177
回复 0
|
赞 1
|
浏览 594
多组测试输入受不了了,害我WA好几次 #include<bits/stdc++.h> using namespace std; const int N = 210; int n, m; int a[N]; int cnt[N]; int main() { while(cin >> n >> m) { memeset(cnt, 0, sizeof cnt); for(int i = 0; i < n; i ++) { cin >> a[i]; c...
qq1915133275
2024年3月23日 23:03
查找学生信息 纯C题解:
P1177
回复 0
|
赞 0
|
浏览 826
#include<stdio.h> //两个数组,stu[i]表示学生i喜欢的书号,book[i]表示喜欢书i的人数 注意书号从1-m int main() { int n,m; while(scanf("%d %d",&n,&m)!=EOF) { int stu[n],book[m+1],d; &n...
为欢几何
2024年3月21日 15:57
查找学生信息 题解:新学的用map来解决,AC
P1177
回复 0
|
赞 0
|
浏览 735
#include<bits/stdc++.h> using namespace std; int main() { int n, m; while(cin >> n >> m){ map<int, int> M; int num[1005]; for(int i = 0; i < n; i++) { cin >> ...
15240928957
2024年3月16日 20:38
查找学生信息 题解:C++
P1177
回复 0
|
赞 0
|
浏览 511
#include <iostream> #include <stdlib.h> #include <map> using namespace std; int a[1005]; int main() { int n, m; while (cin>>n>>m) { for (int i = 0; i <...
easymoney
2024年3月16日 12:06
查找学生信息 题解:(0%)
P1177
回复 1
|
赞 0
|
浏览 665
#include <stdio.h> #include <iostream> #include <algorithm> #include <map> using namespace std; int main(){ int n,m; int book; int t; map<int,int> s; while(cin >> n >> m){ int r[n]; for(int i = 0;i < n ;i++){ cin >>...
红毛舒肤佳
2024年3月11日 17:40
查找学生信息 题解:map函数
P1177
回复 0
|
赞 1
|
浏览 644
#include <bits/stdc++.h> using namespace std; int main(){ int n,m; while(cin>>n>>m){ int num; map<int,int> stu;//key为书的编号,value为喜欢看该编号数的人数 int reader[n];//用于存储读者喜欢书的编号 for(int i=0;i<n;i++){ cin>>num; ...
williams
2024年3月10日 22:29
查找学生信息 题解:秒了
P1177
回复 0
|
赞 0
|
浏览 624
#include <stdio.h> int main(){ int n,m,d[10000],count,r[10000]; while(scanf("%d %d",&n,&m)!=EOF){ for(int i=0;i<n;i++){ scanf("%d",&d[i]); } for(int i=0;i<n;i++){ count=0; for(int j=0;j<n;j...
promising
2024年3月8日 22:08
查找学生信息 题解:
P1177
回复 0
|
赞 0
|
浏览 469
#include<stdio.h> #include<string.h> int main() { int n,m; int i,j; while(~scanf("%d %d",&n,&m)) { int a[10000]; ...
1935569240
2024年3月6日 10:36
查找学生信息 题解:简单算法
P1177
回复 0
|
赞 0
|
浏览 670
#include<iostream> #include<algorithm> #include<string> using namespace std; int main() { int n, m; while(scanf("%d%d",&n,&m)!=EOF){ int stu[205]; &n...
1
2
3
题目
查找学生信息
题解数量
21
发布题解
热门题解
1
P1177 解题思路分享
2
这题的M是搞笑吗????
3
查找学生信息 (多组测试输入)题解:
4
查找学生信息 题解:map函数
5
查找学生信息 题解:map解法
6
动态数组存储各个学生输入的书号
7
map
8
查找学生信息 题解:
9
C++Map集合用于查找
10
查找学生信息 题解:(0%)