update
This commit is contained in:
parent
1d268b7645
commit
264c5327bd
20
搜索/枚举算法/导弹拦截/导弹拦截.cpp
Normal file
20
搜索/枚举算法/导弹拦截/导弹拦截.cpp
Normal 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];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user