标签:学生 ++ bool ios ssi 接下来 整数 output ring
今天搞了一波算法的哈希,代码难道不大,记录在这里吧。
每个案例第一行两个整数N,M,2 <= N ,M<= 200。接下来有N行,第i(i = 1,2,…,N)行每一行有一个数,表示读者i-1最喜欢的图书的编号P(1<=P<=M)
每个案例包括N行,每行一个数,第i行的数表示读者i有几个潜在朋友。如果i和任何人都没有共同喜欢的书,则输出“BeiJu”(即悲剧,^ ^)
4 5 2 3 2 1
1 BeiJu 1 BeiJu
#include <stdio.h> int hash[201]; int main(){ int n; while (scanf("%d",&n)!=EOF){ int m; int save_array[10000]; scanf("%d",&m); for(int i=0;i<n;i++){ scanf("%d",&save_array[i]); hash[save_array[i]]++; } for(int j=0;j<n;j++){ if(hash[save_array[j]]>1) printf("%d\n",hash[save_array[j]]-1); else printf("BeiJu\n"); } } return 0; }
两个整数L(1<=L<=10000)和M(1<=M<=100)。 接下来有M组整数,每组有一对数字。
可能有多组输入数据,对于每组输入数据,输出一个数,表示移走所有区间的树之后剩下的树的个数。
500 3 100 200 150 300 470 471
298
#include <stdio.h> #include <iostream> int main(){ int n; while (scanf("%d",&n)!=EOF){ int times; int hash[10001]={1}; for(int z=0;z<=n;z++){ hash[z]=1; } std::cin>>times; for (int i = 0; i < times; i++) { int x,y; std::cin>>x>>y; for (int j = x; j <= y; j++) { hash[j]=0; } } int fin=0; for(int z=0;z<=n;z++){ if(hash[z]==1) fin++; } std::cout<<fin<<std::endl; } return 0; }
For each case, the first line of the input contains an integer number N representing the quantity of numbers in this array(1≤N≤1000). Next N lines contain N integer numbers(one number per each line) of the original array.
For each case ,outtput file should contain at most N numbers sorted in ascending order. Every number in the output file should occur only once.
6 8 8 7 3 7 7
3 7 8
#include <algorithm> #include <stdio.h> bool cmp(int a, int b){ return a<b; } int main(){ int n; while(scanf("%d",&n)!=EOF){ int array[1001]; for(int i=0;i<n;i++){ scanf("%d",&array[i]); } std::sort(array,array+n,cmp); printf("%d",array[0]); for(int i=1;i<n;i++){ if(array[i]!=array[i-1]) printf(" %d",array[i]); if(i==n-1) printf("\n"); } } return 0; }
测试输入包含若干测试用例,每个测试用例的格式为 第1行:N 第2行:N名学生的成绩,相邻两数字用一个空格间隔。 第3行:给定分数 当读到N=0时输入结束。其中N不超过1000,成绩分数为(包含)0到100之间的一个整数。
对每个测试用例,将获得给定分数的学生人数输出。
3 80 60 90 60 2 85 66 0 5 60 75 90 55 75 75 0
1 0 2
#include <stdio.h> int main(){ int n; while (scanf("%d",&n)!=EOF&&n!=0){ int hash[101]={0}; for(int i=0 ;i<n;i++){ int x; scanf("%d",&x); hash[x]++; } int a; scanf("%d",&a); printf("%d\n",hash[a]); } return 0; }
标签:学生 ++ bool ios ssi 接下来 整数 output ring
原文地址:https://www.cnblogs.com/Pinging/p/8859091.html