Submission #492327

# Submission time Handle Problem Language Result Execution time Memory
492327 2021-12-06T16:00:44 Z Vladth11 Pictionary (COCI18_pictionary) C++14
140 / 140
200 ms 55892 KB
#include <bits/stdc++.h>
#define debug(x) cerr << #x << " " << x << "\n"
#define debugs(x) cerr << #x << " " << x << " "
 
using namespace std;
typedef long long ll;
typedef pair <int, int> pii;
 
const int NMAX = 100001;
const int nr_of_bits = 17;
 
int n, m, q;
vector <int> divs[NMAX];
 
struct edge{
    int from, to, cost;
};
 
vector <edge> edges;
 
void addEdge(int a, int b, int c){
    edges.push_back({a, b, c});
    edges.push_back({a, b, c});
}
 
bool cmp(edge a, edge b){
    return a.cost < b.cost;
}
 
int p[2 * NMAX];
int cnt[2 * NMAX];
 
int root(int x){
    if(p[x] == x)
        return x;
    return p[x] = root(p[x]);
}
 
vector <pii> v[2 * NMAX];
 
void unite(int a, int b, int cost){
    if(root(a) == root(b))
        return;
    v[a].push_back({b, cost});
    v[b].push_back({a, cost});
    a = root(a);
    b = root(b);
    if(cnt[a] < cnt[b])
        swap(a, b);
    p[b] = a;
    cnt[a] += cnt[b];
}
 
int dp[NMAX * 2][nr_of_bits + 1];
int cost[NMAX * 2][nr_of_bits + 1];
pii timp[2 * NMAX];
int stamp;
 
bool isParent(int a, int b){
    return (timp[a].first <= timp[b].first && timp[b].second <= timp[a].second);
}
 
void DFS(int node, int p){
    dp[node][0] = p;
    timp[node].first = ++stamp;
    for(auto x : v[node]){
        if(x.first == p)
            continue;
        cost[x.first][0] = x.second;
        DFS(x.first, node);
    }
    timp[node].second = ++stamp;
}
 
int LCA(int a, int b){
    int r = a, pas = nr_of_bits;
    while(pas >= 0){
        int nxt = dp[r][pas];
        if(nxt != 0 && !isParent(nxt, b))
            r = nxt;
        pas--;
    }
    if(!isParent(r, b))
        r = dp[r][0];
    return r;
}
 
int drum(int r, int lca){
    int pas = nr_of_bits;
    int maxim = 0;
    while(pas >= 0){
        int nxt = dp[r][pas];
        if(nxt != 0 && !isParent(nxt, lca)){
            maxim = max(maxim, cost[r][pas]);
            r = nxt;
        }
        pas--;
    }
    if(r != lca)
        maxim = max(maxim, cost[r][0]);
    return maxim;
}
 
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cin >> n >> m >> q;
    for(int i = 1; i < NMAX; i++){
        for(int j = i; j < NMAX; j+=i){
            divs[i].push_back(j);
        }
    }
    for(int i = 1; i <= n + m; i++){
        p[i] = i;
        cnt[i] = 1;
    }
    for(int i = m; i >= 1; i--){
        for(auto x : divs[i]){
            if(x > n)
                break;
        	unite(x, n + i, (m - i + 1));
        }
    }
    DFS(1, 0);
    for(int j = 1; j <= nr_of_bits; j++){
        for(int i = 1; i <= n + m; i++){
            dp[i][j] = dp[dp[i][j - 1]][j - 1];
            cost[i][j] = max(cost[i][j - 1], cost[dp[i][j - 1]][j - 1]);
        }
    }
    while(q--){
        int x, y;
        cin >> x >> y;
        int lca = LCA(x, y);
        cout << max(drum(x, lca), drum(y, lca)) << "\n";
    }
    return 0;
}

Compilation message

pictionary.cpp: In function 'int main()':
pictionary.cpp:121:13: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
  121 |             if(x > n)
      |             ^~
pictionary.cpp:123:10: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
  123 |          unite(x, n + i, (m - i + 1));
      |          ^~~~~
# Verdict Execution time Memory Grader output
1 Correct 19 ms 15564 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 24 ms 15616 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 44 ms 15872 KB Output is correct
2 Correct 40 ms 15812 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 54 ms 16088 KB Output is correct
2 Correct 49 ms 15932 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 72 ms 24336 KB Output is correct
2 Correct 49 ms 21600 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 64 ms 25408 KB Output is correct
2 Correct 55 ms 22824 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 104 ms 33432 KB Output is correct
2 Correct 87 ms 29120 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 81 ms 27980 KB Output is correct
2 Correct 124 ms 35232 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 158 ms 41520 KB Output is correct
2 Correct 151 ms 37636 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 200 ms 55892 KB Output is correct
2 Correct 159 ms 42076 KB Output is correct