Submission #906580

#TimeUsernameProblemLanguageResultExecution timeMemory
906580ItamarBridges (APIO19_bridges)C++14
0 / 100
109 ms69624 KiB
#include <iostream>
using namespace std;
#include <vector>
#define vi vector<int>
#define ll long long
#include <algorithm>
#include <set>
#include <string>
#include <bitset>
#include <cmath>
#include <math.h>
#define pll pair<ll,ll>
#define vll vector<ll>
#define pi pair<int,int>
#include <map>
#include <queue>
#define x first
#define y second
#define pd pair<double,double>

const int siz = 1e5 + 1;
int ans[siz];
vi ed[siz];
vector<vi> e;
vector<vi> q2;
multiset<pi> fr[siz];

void dfs(int i, int b,bitset<siz>&v) {
    if (v[i])return;
    v[i] = 1;
    for (pi f : fr[i]) {
        if (f.y >= b) {
            dfs(f.x,b,v);
        }
    }
}
vi c[siz];
int my[siz];
void con(int a, int b) {
    int u = my[a], v = my[b];
    if (u == v)return;
    if (c[u].size() > c[v].size())swap(u, v);
    for (int i : c[u]) {
        my[i] = v;
        c[v].push_back(i);
    }
}
struct node {
    int l, r, mini, mid;
    node* sl, * sr;
    node(int li, int ri) {
        l = li, r = ri, mid = (l + r) / 2;
        if (l < r) {
            sl = new node(li, mid);
            sr = new node(mid + 1, ri);
            mini = min(sl->mini, sr->mini);
        }
        else {
            mini = e[l][0];
        }
    }
    void update(int i, int val) {
        if (l == r) {
            mini = val;
        }
        else {
            if (i <= mid)sl->update(i, val);
            else sr->update(i, val);
            mini = min(sl->mini, sr->mini);
        }
    }
    pi query(int a, int t) {
        if (mini >= t)return { l,r };
        if (a <= mid) {
            if (sl->mini >= t)return { l,sr->query(a,t).second };
            else {
                pi p = sl->query(a, t);
                if (p.y == mid)return { p.x,sr->query(a,t).second };
                else return p;
            }
        }
        else {
            if (sr->mini >= t)return { sl->query(a,t).first,r};
            else {
                pi p = sr->query(a, t);
                if (p.x == 1 + mid)return { sl->query(a,t).first ,p.y};
                else return p;
            }
        }
    }
};
int main()
{
    ios_base::sync_with_stdio(false); cin.tie(NULL);
    int n, m;
    cin >> n >> m;
    for (int i = 0; i < m; i++) {
        int u, v, d;
        cin >> u >> v >> d;
        u--, v--;
        fr[u].insert({ v,d });
        fr[v].insert({ u,d });
        ed[i] = { d,u,v };
        e.push_back({ d,u,v });
    }for (int i = 0; i < n; i++) {
        c[i].push_back(i);
        my[i] = i;
    }
    int q;
    cin >> q;
    node* seg = new node(0, n - 2);
    for (int i = 0; i < q; i++) {
        int t,a,b;
        cin >> t>>a>>b;
        a--;
        if (t == 1) {
            seg->update(a, b);
        }
        else {
            cout << seg->query(a, b).second-seg->query(a,b).first+2 << "\n";
        }
    }

}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...