#include#include using namespace std; bool wei(int xl,int yd,int xr,int yu,int x,int y) { if(xl<=x&&x<=xr&&yd<=y&&y<=yu) return true; else return false; } int count1(int a[],int n) { //查找连续1的最大次数 int p[n]= {0}; int x=0; for(int i=0; i >n>>k>>t>>xl>>yd>>xr>>yu; int stu[n][2*t]; for(int i=0; i >stu[i][j]; int ans1=0; //经过高危区域的人数 int ans2=0; //曾在高危区域逗留的人数 int s[n]= {0}; //标记,0未经过,1经过 int tem[n][t]= {0}; //t个位置标记 for(int i=0; i =k) ans2++; } cout<
水题丫
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)