ccf窗口

import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;

public class Main{
    static class Screen{
        int x1;
        int x2;
        int y1;
        int y2;
        int no;
    }
    public static void main(String[] args) {
        Scanner sc = new Scanner (System.in);
        int n = sc.nextInt(),m = sc.nextInt();
        Screen s[] = new Screen[n];
        for(int i =0;i<n;i++){
            Screen screen = new Screen();
            screen.x1 = sc.nextInt();
            screen.y1 = sc.nextInt();
            screen.x2 = sc.nextInt();
            screen.y2 = sc.nextInt();
            screen.no = i+1;
            s[i] = screen;
        }
        for (int i = 1;i<=m;i++){
            int x = sc.nextInt();
            int y =sc.nextInt();
            boolean flag = true;
            for(int j = n-1;j>=0;j--){
                if(x>=s[j].x1&&x<=s[j].x2&&y>=s[j].y1&&y<=s[j].y2){
                    System.out.println(s[j].no);
                    Screen temp = s[j];
                    s[j] = s[n-1];
                    s[n-1] =temp;
                    flag =false;

                    break;
                }
            }
            if(flag){
                System.out.println("IGNORED");
            }
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值