# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1079458 |
2024-08-28T15:01:28 Z |
anton |
Tiles (BOI24_tiles) |
C++17 |
|
260 ms |
23344 KB |
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define pt complex<int>
#define pii pair<int, int>
int N, M;
struct Interval{
int x;
int yl, yr;
bool open = false;
bool operator<(const Interval& b)const{
return yl<b.yl;
}
vector<Interval> clip(pii other_pair){
//////cout<<"clipping "<<yl<<" "<<yr<<" "<<other_pair.first<<" "<<other_pair.second<<endl;
if(yr<other_pair.first || other_pair.second<yl){
return {*this};
}
if(yl<=other_pair.first && other_pair.second<=yr){
return {Interval{x, yl, other_pair.first-1, open}, Interval{x, other_pair.second+1, yr, open}};
}
if(other_pair.first<= yl && yr<=other_pair.second){
return {Interval{x, 0, -1, open}};
}
if(other_pair.first<=yl && other_pair.second<=yr){
return {Interval{x, other_pair.second+1, yr, open}};
}
if(other_pair.first>=yl && other_pair.second>=yr){
return {Interval{x, yl, other_pair.first-1, open}};
}
assert(false);
}
bool is_valid(){
return yl<=yr;
}
int len() const{
return yr-yl+1;
}
};
Interval merge_inter(Interval a, Interval b){
return Interval{a.x, a.yl, b.yr, true};
}
struct InterSet{
set<Interval> intervals;
bool is_valid = true;
int nb_unpair= 0;
void insert_small(Interval new_inter){
if((new_inter.len())%2 ==1){
nb_unpair++;
}
intervals.insert(new_inter);
}
std::set<Interval>::iterator erase(std::set<Interval>::iterator it){
if(((*it).len())%2==1){
nb_unpair--;
}
return intervals.erase(it);
}
std::set<Interval>::iterator merge(std::set<Interval>::iterator a, std::set<Interval>::iterator b){
if(a->yr+1 == b->yl){
Interval ia = *a;
Interval ib = *b;
erase(a);
erase(b);
Interval result =merge_inter(ia, ib);
insert_small(result);
return intervals.find(result);
}
return b;
}
void insert(Interval new_inter){
insert_small(new_inter);
auto it = intervals.find(new_inter);
if(it!=intervals.begin()){
auto prev= it;
--prev;
it = merge(prev, it);
}
auto next = it;
next++;
if(next!=intervals.end()){
next = merge(it, next);
}
}
void insert_big(Interval new_inter){
//cout<<"inserting "<<new_inter.yl<<" "<<new_inter.yr<<endl;
/*for(auto e: intervals){
//cout<<e.yl<<" "<<e.yr<<endl;
}*/
auto lb = intervals.upper_bound(new_inter);
if(lb!=intervals.begin()){
--lb;
}
auto rb = intervals.upper_bound(Interval{0, new_inter.yr, new_inter.yr, false});
if(rb!= intervals.end()){
++rb;
}
vector<Interval> to_insert;
for(auto it = lb; it!= rb;){
Interval val = *it;
it = erase(it);
vector<Interval>resulting = val.clip({new_inter.yl, new_inter.yr});
for(auto val2: resulting){
if(!new_inter.open){
if(pii({val.yl, val.yr}) != pii({val2.yl, val2.yr})){
is_valid &= (new_inter.x-val.x)%2==0;
}
}
if(val2.is_valid()){
to_insert.push_back(val2);
}
}
}
for(auto e: to_insert){
insert(e);
}
if(new_inter.open){
insert(new_inter);
}
}
};
signed main(){
cin>>N>>M;
vector<pt> pts;
for(int i = 0; i<N; i++){
int a, b;
cin>>a>>b;
pts.push_back({a, b});
}
vector<pair<pt, pt>> edges;
pt prev= pts.back();
for(int i = 0; i<N; i++){
edges.push_back({prev, pts[i]-prev});
prev = pts[i];
}
int area = 0;
for(auto e: edges){
area += e.first.imag() * e.second.real();
}
if(area<0){
for(pair<pt, pt>&edge : edges){
edge = {edge.first+edge.second, -edge.second};
}
}
vector<Interval> inters;
for(auto e: edges){
if(e.second.imag()!=0){
if(e.second.imag()>0){
inters.push_back(Interval{e.first.real(), e.first.imag(), e.first.imag()+e.second.imag()-1, true});
}
else if(e.second.imag()<0){
inters.push_back(Interval{e.first.real(), e.first.imag()+e.second.imag(), e.first.imag()-1, false});
}
}
}
auto cmp = [&](Interval& a, Interval& b){
return a.x<b.x;
};
sort(inters.begin(), inters.end(), cmp);
vector<InterSet> inter_set(2);
int k = 0;
Interval prev_inter = Interval{0, 0, 0, true};
auto chmax = [&](int x){
if(inter_set[(x+1)%2].intervals.size()==0){
if(inter_set[0].is_valid && inter_set[1].is_valid){
k = x;
}
}
else if(inter_set[x%2].intervals.size()==0){
if(inter_set[0].is_valid && inter_set[1].is_valid){
k = x-1;
}
}
};
for(auto e: inters){
if(e.x!=prev_inter.x){
//cout<<"nb_unpair: "<<inter_set[0].nb_unpair<<" "<<inter_set[1].nb_unpair<<endl;
for(int i= 0; i<2; i++){
inter_set[i].is_valid &= (inter_set[i].nb_unpair ==0);
}
chmax(e.x);
}
if(inter_set[0].intervals.size()==0 || inter_set[1].intervals.size()==0){
if(inter_set[0].is_valid && inter_set[1].is_valid){
k = e.x-1;
}
}
if(e.open){
inter_set[e.x%2].insert_big(e);
}
else{
inter_set[0].insert_big(e);
inter_set[1].insert_big(e);
}
prev_inter = e;
}
chmax(M);
cout<<k<<endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Incorrect |
23 ms |
3556 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
62 ms |
9104 KB |
Output is correct |
3 |
Correct |
59 ms |
8512 KB |
Output is correct |
4 |
Correct |
103 ms |
18232 KB |
Output is correct |
5 |
Correct |
119 ms |
17464 KB |
Output is correct |
6 |
Correct |
1 ms |
344 KB |
Output is correct |
7 |
Correct |
1 ms |
348 KB |
Output is correct |
8 |
Correct |
165 ms |
18232 KB |
Output is correct |
9 |
Correct |
160 ms |
18316 KB |
Output is correct |
10 |
Correct |
167 ms |
20532 KB |
Output is correct |
11 |
Correct |
181 ms |
19316 KB |
Output is correct |
12 |
Correct |
163 ms |
19000 KB |
Output is correct |
13 |
Correct |
147 ms |
17284 KB |
Output is correct |
14 |
Correct |
139 ms |
17088 KB |
Output is correct |
15 |
Correct |
133 ms |
18740 KB |
Output is correct |
16 |
Correct |
141 ms |
18232 KB |
Output is correct |
17 |
Correct |
168 ms |
17240 KB |
Output is correct |
18 |
Correct |
228 ms |
18620 KB |
Output is correct |
19 |
Correct |
170 ms |
18228 KB |
Output is correct |
20 |
Correct |
164 ms |
19580 KB |
Output is correct |
21 |
Correct |
161 ms |
17972 KB |
Output is correct |
22 |
Correct |
167 ms |
18484 KB |
Output is correct |
23 |
Correct |
156 ms |
18748 KB |
Output is correct |
24 |
Correct |
147 ms |
18228 KB |
Output is correct |
25 |
Correct |
141 ms |
18044 KB |
Output is correct |
26 |
Correct |
177 ms |
23084 KB |
Output is correct |
27 |
Correct |
141 ms |
23344 KB |
Output is correct |
28 |
Correct |
161 ms |
23260 KB |
Output is correct |
29 |
Correct |
141 ms |
18232 KB |
Output is correct |
30 |
Correct |
173 ms |
18184 KB |
Output is correct |
31 |
Correct |
139 ms |
18484 KB |
Output is correct |
32 |
Correct |
171 ms |
19360 KB |
Output is correct |
33 |
Correct |
114 ms |
19256 KB |
Output is correct |
34 |
Correct |
52 ms |
7964 KB |
Output is correct |
35 |
Correct |
1 ms |
344 KB |
Output is correct |
36 |
Correct |
1 ms |
348 KB |
Output is correct |
37 |
Correct |
0 ms |
344 KB |
Output is correct |
38 |
Correct |
0 ms |
348 KB |
Output is correct |
39 |
Correct |
1 ms |
348 KB |
Output is correct |
40 |
Correct |
0 ms |
348 KB |
Output is correct |
41 |
Correct |
0 ms |
348 KB |
Output is correct |
42 |
Correct |
0 ms |
348 KB |
Output is correct |
43 |
Correct |
0 ms |
344 KB |
Output is correct |
44 |
Correct |
0 ms |
348 KB |
Output is correct |
45 |
Correct |
0 ms |
348 KB |
Output is correct |
46 |
Correct |
0 ms |
348 KB |
Output is correct |
47 |
Correct |
0 ms |
348 KB |
Output is correct |
48 |
Correct |
0 ms |
348 KB |
Output is correct |
49 |
Correct |
260 ms |
20528 KB |
Output is correct |
50 |
Correct |
0 ms |
348 KB |
Output is correct |
51 |
Correct |
0 ms |
348 KB |
Output is correct |
52 |
Correct |
89 ms |
20204 KB |
Output is correct |
53 |
Correct |
103 ms |
18740 KB |
Output is correct |
54 |
Correct |
118 ms |
17716 KB |
Output is correct |
55 |
Correct |
108 ms |
18968 KB |
Output is correct |
56 |
Correct |
101 ms |
17976 KB |
Output is correct |
57 |
Correct |
1 ms |
344 KB |
Output is correct |
58 |
Correct |
0 ms |
348 KB |
Output is correct |
59 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
112 ms |
17204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |