# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1111509 |
2024-11-12T09:04:10 Z |
gelastropod |
Fire (BOI24_fire) |
C++14 |
|
2000 ms |
336 KB |
#include<bits/stdc++.h>
using namespace std;
#define int long long
int M;
vector<pair<int, int>> tree;
void upd(int n, int x, int i)
{
while (n <= M)
{
if (tree[n].first < x)
tree[n] = {x, i};
n += n & (-n);
}
}
pair<int, int> qry(int a)
{
pair<int, int> ans = {-1LL, -1LL};
while (a > 0)
{
if (ans.first < tree[a].first)
ans = tree[a];
a -= a & (-a);
}
return ans;
}
signed main()
{
int N, a, b;
cin >> N >> M;
tree = vector<pair<int, int>>(M + 1LL, {-1LL, -1LL});
set<pair<int, int>> pairss;
vector<pair<int, int>> pairs;
vector<bool> works(N, true);
for (int i = 0; i < N; i++)
{
cin >> a >> b;
if (a > b) b += M;
pairss.insert({a, b});
}
int counter = 0;
while (!pairss.empty())
{
pairs.push_back(*pairss.begin());
upd(pairss.begin()->first, pairss.begin()->second, counter);
counter++;
pairss.erase(pairss.begin());
}
int anss = LONG_MAX;
for (int i = 0; i < N; i++)
{
works[i] = false;
int num = 1LL;
int ca = pairs[i].first, cb = pairs[i].second;
int prev = i;
while (cb - ca < M)
{
auto z = qry(cb);
if (z.first != -1 && z.second != prev && z.second != -1)
{
cb = z.first;
works[z.second] = false;
num++;
}
else
break;
prev = z.second;
}
if (cb - ca >= M)
anss = min(num, anss);
}
if (anss == LONG_MAX)
cout << "-1\n";
else
cout << anss << '\n';
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
336 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
336 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
336 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Execution timed out |
2075 ms |
336 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Execution timed out |
2091 ms |
336 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
336 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |