import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { static long maximumPeople(long[] p, long[] x, long[] y, long[] r) { // Return the maximum number of people that will be in a sunny town after removing exactly one cloud. boolean[] covered=new boolean[p.length]; long max=0; for(int i=0;i=start && x[j]<=end){ covered[j]=true; pop+=p[j]; } } if(pop>max) max=pop; } for(int i=0;i