답안 #892880

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
892880 2023-12-26T06:12:47 Z AccountName Trampoline (info1cup20_trampoline) C++14
0 / 100
555 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 < R; i++)
    {
		for(int j = 0; j < C; j++)
		{
			greens[i][j] = 0;
		}
	}
    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 and y >= y_start)
		{
			//cout << x << " " << y << " c\n";
			if(greens[x-1][y] == 1)
			{
				x--;
			}
			else
			{
				y--;
			}
			if(y < y_start) break;
		}
		if(x == x_start and y_end >= y_start)
		{
			cout << "Yes\n";
		}
		else
		{
			cout << "No\n";
		}
	}
    
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 604 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 30 ms 6492 KB 4000 token(s): yes count is 99, no count is 3901
2 Runtime error 11 ms 12808 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 555 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 521 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 490 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -