# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
997410 | goats_9 | Railway (BOI17_railway) | C++17 | 72 ms | 30156 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.
/* Author: goats_9 */
#include <bits/stdc++.h>
using namespace std;
#define LSOne(s) (s & (-s))
using ll = long long;
const int LOG = 20;
class BIT {
int n;
vector<int> ft;
public:
BIT(int _n) : n(_n), ft(n + 1, 0) {}
void update(int i, int v) {
for (; i <= n; i += LSOne(i)) ft[i] += v;
}
int query(int l, int r) {
int ans = 0;
for (; r; r -= LSOne(r)) ans += ft[r];
for (l--; l; l -= LSOne(l)) ans -= ft[l];
return ans;
}
};
int main() {
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |