답안 #892902

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
892902 2023-12-26T06:50:33 Z Hhw48 Trampoline (info1cup20_trampoline) C++14
0 / 100
2000 ms 143440 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define mod 1000000007
int r,c,n;
int arr[3000][3000];
int memo(int y, int x, int t_y, int t_x){
	if(x>t_x)return 0;
	if(y>t_y)return 0;
	if(x<1||y<1)return 0;
	if(y==t_y && x==t_x){
		return 1;
	}
	else{
		if(arr[y][x]==1){
			return max(memo(y,x+1,t_y,t_x),memo(y+1,x,t_y,t_x));
		}
		else{
			return memo(y,x+1,t_y,t_x);
		}
	}
}
int32_t main(){
	ios::sync_with_stdio(0);
	cin.tie(0);
	cin>>r>>c>>n;
	memset(arr,0,sizeof(arr));
	for(int i=1; i<=n; i++){
		int x,y;
		cin>>y>>x;
		arr[y][x]=1;
	}
	int t;
	cin>>t;
	while(t--){
		int sy,sx,ey,ex;
		cin>>sy>>sx>>ey>>ex;
		/*
		bool flag=true;
		if(sy==r){
			cout<<"No\n";
			continue;
		}
		for(int i=sx; i<=c; i++){
			if(arr[sy][i]==1 && i<=ex){
				cout<<"Yes\n";
				flag=false;
				break;
			}
		}
		if(flag==true)cout<<"No\n
		*/
		if(memo(sy,sx,ey,ex)==1){
			cout<<"Yes\n";
		}
		else{
			cout<<"No\n";
		}
	}
}

# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2016 ms 70744 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2047 ms 70744 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 71 ms 143440 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 60 ms 143184 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 65 ms 143252 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -