이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
#define ff first
#define ss second
#define pb push_back
#define mp make_pair
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<ll, ll> pll;
typedef pair<ull, ull> pull;
typedef pair<int, int> pii;
typedef pair<ld, ld> pld;
struct seg{
int l, r, type, cnt;
};
int n, m;
seg a[10009];
int ans[10009];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
//freopen("in.txt", "r", stdin);
//freopen("out.txt", "w", stdout);
cin >> n >> m;
for(int i = 0; i < m; ++i){
cin >> a[i].l >> a[i].r >> a[i].cnt >> a[i].type;
if(a[i].type == 1)
a[i].cnt = a[i].r-a[i].l+2-a[i].cnt;
}
for(int i = 0; i < n; ++i){
pii mini = {1e9, 1e9};
for(int j = 0; j < m; ++j){
if(a[j].cnt <= 0 || a[j].l > i || a[j].r < i)
continue;
mini = min(mini, {a[j].r, j});
}
if(mini.ff == 1e9)
ans[i] = 0;
else
ans[i] = a[mini.ss].type;
for(int j = 0; j < m; ++j)
if(a[j].l <= i && i <= a[j].r && ans[i] == a[j].type)
a[j].cnt--;
}
for(int i = n-1; i >= 0; --i){
pii maxi = {-1e9, -1e9};
for(int j = 0; j < m; ++j){
if(a[j].cnt <= 0 || a[j].l > i || a[j].r < i)
continue;
maxi = max(maxi, {a[j].l, j});
}
if(maxi.ff == -1e9)
continue;
for(int j = 0; j < m; ++j)
if(a[j].l <= i && i <= a[j].r && ans[i] == a[j].type)
a[j].cnt++;
ans[i] = a[maxi.ss].type;
for(int j = 0; j < m; ++j)
if(a[j].l <= i && i <= a[j].r && ans[i] == a[j].type)
a[j].cnt--;
}
for(int j = 0; j < m; ++j)
if(a[j].cnt > 0){
cout << "-1\n";
return 0;
}
for(int i = 0; i < n; ++i)
cout << ans[i] << ' ';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |