标签:大片 col 理解 nbsp str 超过 不能 存在 algorithm
对于每组数据,第一行为四个整数n,m,p,q
之后是一个n*m的矩阵,矩阵中每个整数代表每块田地高度
1<=T<=100
1<=n,m<=100
1<=p<=q<=n*m
1<=梯田高度<=1000000
每组输出占一行
2 3 3 3 6 1 2 3 4 5 6 7 8 9 4 4 5 6 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1
3 -1
//我的理解:注意这道题的意思是每个1*1的梯田当海啸来临时,四周就已经被淹没了
#include<stdio.h> #include<iostream> #include<malloc.h> #include<algorithm> using namespace std; int moni(int **,int,int,int); int main() { int num; scanf("%d",&num); while(num--) { int n,m,p,q; int h=0; scanf("%d%d%d%d",&n,&m,&p,&q); int *a=(int *)malloc(sizeof(int)*(n*m)); for(int i=0;i<n*m;i++) scanf("%d",&a[i]); sort(a,a+n*m); h=a[p-1]; int temp=p; for(int i=p-1;i<=q;i++) { if(a[i]<=h) temp++; } if(temp>q) printf("-1\n"); else printf("%d\n",h); } }
标签:大片 col 理解 nbsp str 超过 不能 存在 algorithm
原文地址:https://www.cnblogs.com/wzmm/p/12790420.html