This commit is contained in:
Zengtudor 2024-08-17 12:01:11 +08:00
parent 8561d633fc
commit e7fe368872
2 changed files with 28 additions and 1 deletions

23
day14/P1941/P1941.cpp Normal file
View File

@ -0,0 +1,23 @@
#include <ios>
#include <iostream>
using namespace std;
const int MAX_N=1e4+5;
int n,m,k;
int x[MAX_N],y[MAX_N],l[MAX_N],h[MAX_N];
int main(){
ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
cin>>n>>m>>k;
for(int i=1;i<=n;i++){
cin>>x[i]>>y[i];
}
for(int i=1;i<=k;i++){
int p;
cin>>p;
cin>>l[p]>>h[p];
}
for(int i=1;i<=n;i++){
for(int j=0;j<=)
}
}

View File

@ -185,4 +185,8 @@ target("P4141")
target("P6567") target("P6567")
set_rundir("day14/P6567") set_rundir("day14/P6567")
add_files("day14/P6567/P6567.cpp") add_files("day14/P6567/P6567.cpp")
target("P1941")
set_rundir("day14/P1941")
add_files("day14/P1941/P1941.cpp")