mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 04:58:48 +00:00
P1904 天际线
R52352351
This commit is contained in:
parent
9e5aa29038
commit
a65d24c602
22
Luogu/problem/P1904/P1904.cpp
Normal file
22
Luogu/problem/P1904/P1904.cpp
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int l, h, r, ml, mr, a[10005];
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
while (cin >> l >> h >> r) {
|
||||||
|
ml = min(ml, l);
|
||||||
|
mr = max(mr, r);
|
||||||
|
for (int i = l; i < r; i++) {
|
||||||
|
a[i] = max(a[i], h);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int i = ml - 1; i <= mr; i++) {
|
||||||
|
if (a[i] != a[i - 1]) {
|
||||||
|
cout << i << ' ' << a[i] << ' ';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cout << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user