M–二分查找 Time Limit: 600MS Memory Limit: 65536KB Submit Statistic PRoblem Description
给出含有n个数的升序序列,保证序列中的数两两不相等,这n个数编号从1 到n。 然后给出q次询问,每次询问给出一个数x,若x存在于此序列中,则输出其编号,否则输出-1。
Input
单组输入。首先输入一个整数n(1 <= n && n <= 3000000),接下的一行包含n个数。 再接下来的一行包含一个正整数q(1 <= q && q <= 10000),表示有q次询问。 再接下来的q行,每行包含一个正整数x。
Output
对于每次询问,输出一个整数代表答案。
Example Input
5 1 3 5 7 9 3 1 5 8
Example Output
1 3 -1
#include <stdio.h>int a[3100000];int find(int x, int y,int k){ int m=x+(y-x)/2; if(x>y) return -1; else { if(a[m]==k) return m+1; else if(a[m]>k) return find(x,m-1,k); else return find (m+1,y,k); }}int main(){ int n; int k,q,i; scanf("%d",&n); for(i=0;i<n;i++) { scanf("%d",&a[i]); } scanf("%d",&q); while(q--) { scanf("%d",&k); printf("%d/n",find(0,n-1,k)); } return 0;}新闻热点
疑难解答