#include<bits/stdc++.h>
using namespace std;
int main()
{
int n, m;
cin >> n >> m;
vector < vector < int > > greater(n, vector < int > (n+1, 0));
vector < vector < int > > smaller(n, vector < int > (n+1, n));
for (int i = 0; i < m; i++)
{
int l, r, k, value;
cin >> l >> r >> k >> value;
r++;
int len = r-l;
if (value == 0)
smaller[l][r] = min(smaller[l][r], len - k);
else
greater[l][r] = max(greater[l][r], len - k + 1);
}
for (int i = 0; i < n; i++)
smaller[i][i+1] = min(smaller[i][i+1], 1);
/*
for (int i = 0; i < n; i++)
for (int j = i+1; j <= n; j++)
cerr << i << " -> " << j << " " << smaller[i][j] << " " << greater[i][j] << "\n";
*/
vector < int > mi(n+1, 0);
vector < int > ma(n+1, n);
ma[0] = 0;
for (int i = 0; i < n; i++)
{
int res = 0;
for (int j = n; j > i; j--)
{
res = max(res, greater[i][j]);
mi[j] = max(mi[j], mi[i] + res);
ma[j] = min(ma[j], ma[i] + smaller[i][j]);
res = max(res-1, 0);
}
if (res != 0)
{
cout << -1 << "\n";
return 0;
}
}
for (int i = 0; i < n; i++)
for (int j = 0; j <= n; j++)
{
assert(mi[j] >= mi[i] + greater[i][j]);
assert(mi[j] <= mi[i] + smaller[i][j]);
}
vector < int > res;
for (int i = 1; i <= n; i++)
{
if (mi[i] > ma[i])
{
cout << -1 << "\n";
return 0;
}
res.emplace_back(mi[i] - mi[i-1]);
assert(res.back() == 1 || res.back() == 0);
}
for (auto x : res)
cout << x << " ";
cout << "\n";
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
340 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
364 ms |
262144 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
364 ms |
262144 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
340 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |