# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
689430 | Matteo_Verz | Bigger segments (IZhO19_segments) | C++17 | 84 ms | 12068 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#ifdef BLAT
#include "debug/debug.hpp"
#else
#define debug(x...)
#endif
using namespace std;
const long long INF = 1'000'000'000'000'000; // 1e15
int binSearch(const vector <long long> &v, long long val) {
int r, pas;
for (r = -1, pas = 1 << 17; pas; pas >>= 1)
if (r + pas < v.size() && v[r + pas] < val)
r += pas;
r++;
return r;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
vector <int> v(1 + n), dp(1 + n);
vector <long long> sp(1 + n), s(1 + n, INF);
Compilation message (stderr)
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |