Submission #256276

# Submission time Handle Problem Language Result Execution time Memory
256276 2020-08-02T13:12:41 Z Sorting Game (IOI13_game) C++17
0 / 100
4 ms 896 KB
#include "game.h"
#include <bits/stdc++.h>

using namespace std;

const int k_Inf = 1e9;

long long gcd2(long long X, long long Y) {
    long long tmp;
    while (X != Y && Y != 0) {
        tmp = X;
        X = Y;
        Y = tmp % Y;
    }
    return X;
}

struct SegmentTree{
    vector<long long> nodes;
    vector<int> left, right;

    void get_new_node(){
        nodes.push_back(0);
        left.push_back(-1);
        right.push_back(-1);
    }

    void build_kids(int idx){
        if(left[idx] == -1){
            get_new_node();
            left[idx] = nodes.size() - 1;
        }
        if(right[idx] == -1){
            get_new_node();
            right[idx] = nodes.size() - 1;
        }
    }

    SegmentTree(){
        get_new_node();
    }

    void update(int idx, int l, int r, int s, long long new_val){
        if(s < l || r < s) return;
        if(l == r){
            nodes[idx] = new_val;
            return;
        }

        build_kids(idx);

        int mid = (l + r) >> 1;
        update(left[idx], l, mid, s, new_val);
        update(right[idx], mid + 1, r, s, new_val);

        nodes[idx] = gcd2(nodes[left[idx]], nodes[right[idx]]);
    }

    long long query(int idx, int l, int r, int sl, int sr){
        if(sl > r || sr < l) return 0;
        if(sl <= l && r <= sr) return nodes[idx];

        build_kids(idx);

        int mid = (l + r) >> 1;
        long long lvalue = query(left[idx], l, mid, sl, sr);
        long long rvalue = query(right[idx], mid + 1, r, sl, sr);
        return gcd2(lvalue, rvalue);
    }
};

struct SegmentTree2D{
    vector<SegmentTree*> nodes;
    vector<int> left, right;

    void get_new_node(){
        nodes.push_back(new SegmentTree());
        left.push_back(-1);
        right.push_back(-1);
    }

    void build_kids(int idx){
        if(left[idx] == -1){
            get_new_node();
            left[idx] = nodes.size() - 1;
        }
        if(right[idx] == -1){
            get_new_node();
            right[idx] = nodes.size() - 1;
        }
    }

    SegmentTree2D(){
        get_new_node();
    }

    void update(int idx, int l, int r, int x, int y, long long new_val){
        if(x < l || r < x) return;
        if(l == r){
            nodes[idx]->update(0, 0, k_Inf, y, new_val);
            return;
        }

        build_kids(idx);

        int mid = (l + r) >> 1;
        update(left[idx], l, mid, x, y, new_val);
        update(right[idx], mid + 1, r, x, y, new_val);

        nodes[idx]->update(0, 0, k_Inf, y, new_val);
    }

    long long query(int idx, int l1, int r1, int sl1, int sr1, int sl2, int sr2){
        if(sl1 > r1 || sr1 < l1) return 0;
        if(sl1 <= l1 && r1 <= sr1) return nodes[idx]->query(0, 0, k_Inf, sl2, sr2);

        build_kids(idx);

        int mid = (l1 + r1) >> 1;
        long long lvalue = query(left[idx], l1, mid, sl1, sr1, sl2, sr2);
        long long rvalue = query(right[idx], mid + 1, r1, sl1, sr1, sl2, sr2);
        return gcd2(lvalue, rvalue);
    }   
};


int r, c;
SegmentTree2D st;

void init(int _r, int _c) {
    r = _r, c = _c;
}

void update(int p, int q, long long k) {
    st.update(0, 0, k_Inf, p, q, k);
}

long long calculate(int p, int q, int u, int v) {
    return st.query(0, 0, k_Inf, p, u, q, v);
}

Compilation message

grader.c: In function 'int main()':
grader.c:18:6: warning: variable 'res' set but not used [-Wunused-but-set-variable]
  int res;
      ^~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 3 ms 896 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 1 ms 384 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 4 ms 896 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 3 ms 896 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 3 ms 896 KB Output isn't correct
3 Halted 0 ms 0 KB -