This commit is contained in:
Zengtudor 2024-08-06 13:57:37 +08:00
parent 1d268b7645
commit 264c5327bd
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
#include<bits/stdc++.h>
using namespace std;
const int MAX_N=1e5+5;
int x_1,x_2,y_1,y_2,n,x[MAX_N],y[MAX_N];
struct Dd{
int lj1;
int lj2;
}dd[MAX_N];
int main(){
cin>>x_1>>y_1>>x_2>>y_2;
cin>>n;
for(int i=1;i<=n;i++){
cin>>x[i]>>y[i];
}
}