Submission #892867

# Submission time Handle Problem Language Result Execution time Memory
892867 2023-12-26T05:54:27 Z AccountName Trampoline (info1cup20_trampoline) C++14
0 / 100
502 ms 1048576 KB
#include <bits/stdc++.h>
using namespace std;
 
#define int long long
 
signed main()
{
    ios_base::sync_with_stdio(false); cin.tie(NULL);

    int R, C, N;
    cin >> R >> C >> N;
    
    char greens[R][C]; // subtask 1,2,4
    for(int i = 0; i < N; i++)
    {
		int x, y;
		cin >> x >> y;
		greens[x][y] = 1;
	}
	
	int T;
	cin >> T;
	
	for(int i = 0; i < T; i++)
	{
		int x_start, y_start, x_end, y_end;
		cin >> x_start >> y_start >> x_end >> y_end;
		
		int x = x_end;
		int y = y_end;
		
		while(x > x_start or y > y_start)
		{
			//cout << x << " " << y << " c\n";
			if(x != x_start and greens[x-1][y] == 1)
			{
				x--;
			}
			else
			{
				y--;
			}
			if(y < y_start) break;
		}
		if(x == x_start and y == y_start)
		{
			cout << "Yes\n";
		}
		else
		{
			cout << "No\n";
		}
	}
    
	return 0;
}
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 604 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 8 ms 12892 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 499 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 502 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 501 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -