AoSaiBook_Code/搜索/枚举算法/导弹拦截/导弹拦截.cpp

20 lines
275 B
C++
Raw Normal View History

2024-08-06 05:57:37 +00:00
#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];
}
}