Submission #365914

# Submission time Handle Problem Language Result Execution time Memory
365914 2021-02-12T13:56:30 Z fadi57 Trampoline (info1cup20_trampoline) C++14
43 / 100
183 ms 5364 KB
#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
const ll mx=2509;
const int mod= 1e9+7 ;
const ll inf=1e12+4;

//***while there is life there is hope


int r,c,n;

int main() {



	 //ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);

	 cin>>r>>c>>n;
	 int rr[n];
	 int cc[n];
	 vector<int>row[mx];
	 for(int i=0;i<n;i++){


        cin>>rr[i]>>cc[i];
        row[rr[i]].push_back(cc[i]);
	 }for(int i=1;i<=r;i++){

	 sort(row[i].begin(),row[i].end());
	 }
	 int t;


	 cin>>t;



while(t--){
    int x1,y1,x2,y2;
    cin>>x1>>y1>>x2>>y2;
    int ans=0;
    if(x1<=x2&&y1<=y2){


        while(x1<x2){

            if(row[x1].empty()){break;}
            int nxt=lower_bound(row[x1].begin(),row[x1].end(),y1)-row[x1].begin();
            if(nxt==row[x1].size()||row[x1][nxt]>y2){break;}
y1=row[x1][nxt];

    //cout<<"test :"<<x1<<" "<<row[x1][nxt]<<endl;
 x1++;
        }

        if(x1==x2){ans=1;}




    }if(ans){cout<<"Yes"<<endl;}else{cout<<"No"<<endl;}




}
}










Compilation message

trampoline.cpp: In function 'int main()':
trampoline.cpp:51:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   51 |             if(nxt==row[x1].size()||row[x1][nxt]>y2){break;}
      |                ~~~^~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 5 ms 492 KB 200 token(s): yes count is 21, no count is 179
2 Correct 6 ms 492 KB 200 token(s): yes count is 70, no count is 130
3 Correct 4 ms 492 KB 197 token(s): yes count is 25, no count is 172
# Verdict Execution time Memory Grader output
1 Correct 153 ms 4844 KB 4000 token(s): yes count is 99, no count is 3901
2 Correct 132 ms 5228 KB 4000 token(s): yes count is 91, no count is 3909
3 Correct 170 ms 4684 KB 4000 token(s): yes count is 4000, no count is 0
4 Correct 183 ms 5364 KB 4000 token(s): yes count is 1991, no count is 2009
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 620 KB Execution killed with signal 7
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 620 KB Execution killed with signal 7
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 620 KB Execution killed with signal 7
2 Halted 0 ms 0 KB -