Submission #522142

# Submission time Handle Problem Language Result Execution time Memory
522142 2022-02-04T00:25:06 Z maks007 Trampoline (info1cup20_trampoline) C++14
0 / 100
2000 ms 377332 KB
#include <bits/stdc++.h>
 
using namespace std;
 
int main(void) {
	int n, m;
	cin >> n >> m;
	map <int,vector <int>> a;
	int q;
	cin >> q;
	while(q --) {
		int x, y;
		cin >> x >> y;
		x --;
		y --;
		a[x].push_back(y);
	}
	for(int i = 0; i < n; i ++) sort(a[i].begin(), a[i].end());
	cin >> q;
	while(q --) {
		int startx, starty, endx, endy;
		cin >> startx >> starty >> endx >> endy;
		startx --;
		starty --;
		endx --;
		endy --;
		while(startx != endx) {
			auto it = lower_bound(a[startx].begin(), a[startx].end(), starty);
			if(it == a[startx].end()) {
				goto end;
			}
			startx ++;
			starty = *it;
		}
		cout << "Yes\n";
		continue;
		end:;
		cout << "No\n";
	}
	return false;
}
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 332 KB expected NO, found YES [2nd token]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 158 ms 1936 KB expected NO, found YES [121st token]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2088 ms 351224 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2088 ms 377332 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2086 ms 358384 KB Time limit exceeded
2 Halted 0 ms 0 KB -