Searching_3查询问题算法java实现

在这里插入图片描述

方法1:直接拼接一个数组

import java.util.Scanner;

public class Main {
	public static void main(String[]args) {
    	Scanner sc=new Scanner(System.in);
    	int testcase=sc.nextInt();
    	for(int i=0;i<testcase;i++) {
    		int groupnum=sc.nextInt();
    		int querynum=sc.nextInt();
    		long[][]arr=new long[groupnum][2];
    		int count=0;
    		for(int k=0;k<groupnum;k++) {
    			arr[k][0]=sc.nextLong();
    			arr[k][1]=sc.nextLong();
    			count+=arr[k][1]-arr[k][0]+1;
    		}
    		//结果数组,需要时查表即可
    		long[]result=new long[count];
    		int m=0;
    		for(int j=0;j<groupnum;j++) {
    			for(long k=arr[j][0];k<=arr[j][1];k++) {
    				result[m++]=k;
    			}
    		}
    		long q;
    		System.out.print(result[(int)(sc.nextLong()-1)]);
    		for(int k=1;k<querynum;k++) {
    			System.out.print(" "+result[(int)(sc.nextLong()-1)]);
    		}
    		System.out.println();
    		
    	}
      	sc.close();
    }
}

方法2:构造一个起始值数组,然后用二分查找定位所在区间

import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

public class Main {
	public static void main(String[]args) {
    	Scanner sc=new Scanner(System.in);
    	int testcase=sc.nextInt();
    	for(int i=0;i<testcase;i++) {
    		int groupnum=sc.nextInt();
    		int querynum=sc.nextInt();
    		long[][]arr=new long[groupnum][2];
    		for(int k=0;k<groupnum;k++) {
    			arr[k][0]=sc.nextLong();
    			arr[k][1]=sc.nextLong();
    		}
    		Arrays.sort(arr, new Comparator<long[]>() {
				@Override
				public int compare(long[] o1, long[] o2) {
					return (int)(o1[0]-o2[0]);
				}
			});
    		long[]rank=new long[groupnum];
    		rank[0]=arr[0][0];
    		for(int k=1;k<groupnum;k++) {
    			rank[k]=arr[k-1][1]-arr[k-1][0]+rank[k-1]+1;
    		}
    		for(int k=0;k<querynum;k++) {
    			long q=sc.nextLong();
    			int low=0,high=groupnum-1;
    			int mid=low+(high-low)/2;
    			while(low<=high) {
    				mid=low+(high-low)/2;
    				if(rank[high]<=q) {
    					if(k==0)
    						System.out.print((arr[high][0]-rank[high]+q));
    					else 
    						System.out.print(" "+(arr[high][0]-rank[high]+q));
    					break;
    				}
    				if(high-low<=1) {
    					if(k==0)
    						System.out.print((arr[low][0]-rank[low]+q));
    					else 
    						System.out.print(" "+(arr[low][0]-rank[low]+q));
    					break;
    				}
    				if(rank[mid]>q) {
    					high=mid;
    				} else {
    					low=mid;
    				}
    				
    			}
    		}
    		System.out.println();
    		
    	}
      	sc.close();
    }
}

PS:方法2没有通过oj,找了很久也没找出问题出在哪,囧

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

学无止境jl

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值