Submission #892874

# Submission time Handle Problem Language Result Execution time Memory
892874 2023-12-26T06:01:02 Z jellybean Trampoline (info1cup20_trampoline) C++17
54 / 100
153 ms 16072 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long

vector<int>arr[2505];
pair<int,int>arr1[200005];

signed main(){
	ios::sync_with_stdio(0); cin.tie(0);
	
	int r,c,n; cin>>r>>c>>n;
	
	if(r<=2500 and c<=2500){
		for(int i=0; i<n; i++){
			int a,b; cin>>a>>b;
			arr[a].push_back(b); //row a has a green tramp at b
		}
		for(int i=0; i<2505; i++) sort(arr[i].begin(), arr[i].end());
		
		int t; cin>>t;
		while(t--){
			int x1,y1,x2,y2; cin>>x1>>y1>>x2>>y2;
			if(x2<x1) {cout<<"No\n"; continue;}
			int row=x1, col=y1;
			bool f=0;
			while(row!=x2){
				auto it = lower_bound(arr[row].begin(), arr[row].end(), col);
				if(it==arr[row].end()){f=1; cout<<"No\n"; break;}
				col = *it;
				row++;
			}
			if(f) continue;
			if(y2<col) cout<<"No\n";
			else cout<<"Yes\n";
		}
		return 0;
	} 
	
	for(int i=0; i<n; i++) cin>>arr1[i].first>>arr1[i].second;
	sort(arr1, arr1+n);
	//for(int i=0;i<n; i++) cout<<arr1[i].first<<" "<<arr1[i].second<<"\n";
	int t; cin>>t;
	while(t--){
		int x1,y1,x2,y2; cin>>x1>>y1>>x2>>y2;
		pair<int,int> p = {x1,y1};
		auto it = lower_bound(arr1, arr1+n, p);
		if(it==arr1+n){cout<<"No\n"; continue;}
		p = *it;
		if(p.first == x1 and p.second <= y2) cout<<"Yes\n";
		else cout<<"No\n";
	}
		
	
	return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 2 ms 600 KB 200 token(s): yes count is 21, no count is 179
2 Correct 2 ms 604 KB 200 token(s): yes count is 70, no count is 130
3 Correct 1 ms 604 KB 197 token(s): yes count is 25, no count is 172
# Verdict Execution time Memory Grader output
1 Correct 35 ms 3164 KB 4000 token(s): yes count is 99, no count is 3901
2 Correct 36 ms 3164 KB 4000 token(s): yes count is 91, no count is 3909
3 Correct 63 ms 2796 KB 4000 token(s): yes count is 4000, no count is 0
4 Correct 72 ms 3288 KB 4000 token(s): yes count is 1991, no count is 2009
# Verdict Execution time Memory Grader output
1 Correct 131 ms 4132 KB 200000 token(s): yes count is 110486, no count is 89514
2 Correct 137 ms 16072 KB 200000 token(s): yes count is 114664, no count is 85336
3 Correct 145 ms 16004 KB 200000 token(s): yes count is 86232, no count is 113768
4 Correct 153 ms 15972 KB 200000 token(s): yes count is 94603, no count is 105397
5 Correct 144 ms 15956 KB 200000 token(s): yes count is 94148, no count is 105852
6 Correct 151 ms 15944 KB 200000 token(s): yes count is 97163, no count is 102837
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 600 KB expected NO, found YES [17th token]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 139 ms 4256 KB expected NO, found YES [23rd token]
2 Halted 0 ms 0 KB -