답안 #920894

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
920894 2024-02-03T07:28:07 Z zhehan Trampoline (info1cup20_trampoline) C++14
0 / 100
2000 ms 19188 KB
#include <bits/stdc++.h>

using namespace std;

#define int long long

signed main()
{
    int r,c,n,t;
    cin>>r>>c>>n;
    map<int,int> m;
    for(int i{};i<n;++i){
        int a,b;
        cin>>a>>b;
        if(m[a]==0){
            m[a]=b;
        }else{}
        m[a]=min(m[a],b);
    }
    cin>>t;
    for(int i{};i<t;++i){
        int x1,x2,y1,y2;
        cin>>x1>>y1>>x2>>y2;
        if(y1==y2) cout<<"Yes"<<'\n';
        else{
            bool pass{true};
            for(int j{x1};j<x2;++j){
                if(!(m[j]>=y1&&m[j]<=y2)){
                    pass=false;
                }else{
                    y1=m[j];
                }
            }
            if(pass){
                cout<<"Yes"<<'\n';
            }else{
                cout<<"No"<<'\n';
            }
        }
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 344 KB expected YES, found NO [1st token]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 247 ms 580 KB expected YES, found NO [3rd token]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 567 ms 1332 KB expected YES, found NO [4th token]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2005 ms 19188 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2055 ms 5436 KB Time limit exceeded
2 Halted 0 ms 0 KB -