제출 #1083528

#제출 시각아이디문제언어결과실행 시간메모리
1083528SamueleVid참나무 (IOI23_beechtree)C++17
0 / 100
2096 ms34744 KiB
#include <bits/stdc++.h>
using namespace std;

constexpr int MAXN = 2e5 + 5;
constexpr int MAXM = 2e5 + 5;

int depth[MAXN];
vector<int> adj[MAXN];
vector<int> P;
vector<int> C;
set<int> colori_prof[3];
int numero[3];

void dfs2(int u) {
    // cout << "visito " << u << " con depth " << depth[u] << '\n';
    colori_prof[depth[u]].insert(C[u]);
    // cout << "aumento numero[depth[u]] da " << numero[depth[u]] << " a ";
    numero[depth[u]] ++;
    // cout << numero[depth[u]] << '\n';

    // cout << "vicini di " << u << " :";
    // for (auto x : adj[u]) {
    //     cout << x << " ";
    // }
    // cout << '\n';

    for (auto x : adj[u]) {
        if (x == P[u]) continue;
        depth[x] = depth[u] + 1;
        dfs2(x);
    }
}

vector<int> beechtree(int N, int M, vector<int> P, vector<int> C) {
    :: P = P;
    :: C = C;

    fill(colori_prof, colori_prof + 3, set<int>());
    fill(numero, numero + 3, 0);
    fill(adj, adj + MAXN, vector<int>());

    for (int i = 1; i < N; i ++) {
        adj[P[i]].push_back(i);
        adj[i].push_back(P[i]);
    }

    depth[0] = 0;
    dfs2(0);

    vector<int> res(N, 1);
    
    bool condivide_uno = 0;
    for (auto x : colori_prof[2]) {
        if (colori_prof[1].count(x)) condivide_uno = 1;
    }

    // cout << "colori_prof[2].size() : " << colori_prof[2].size() << '\n';
    // cout << "condivide_uno : " << condivide_uno << '\n';
    // cout << "colori_prof[1].size() : " << colori_prof[1].size() << '\n';
    // cout << "numero[1] : " << numero[1] << '\n';

    res[0] = 0;

    if ((colori_prof[2].size() == 1 && condivide_uno) && colori_prof[1].size() == numero[1]) {
        res[0] = 1;
    }

    if (numero[2] == 0 && colori_prof[1].size() == numero[1]) {
        res[0] = 1; 
    }

    if (numero[1] == 0) res[0] = 1;

    return res;
}

컴파일 시 표준 에러 (stderr) 메시지

beechtree.cpp: In function 'std::vector<int> beechtree(int, int, std::vector<int>, std::vector<int>)':
beechtree.cpp:64:80: warning: comparison of integer expressions of different signedness: 'std::set<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   64 |     if ((colori_prof[2].size() == 1 && condivide_uno) && colori_prof[1].size() == numero[1]) {
      |                                                          ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
beechtree.cpp:68:49: warning: comparison of integer expressions of different signedness: 'std::set<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   68 |     if (numero[2] == 0 && colori_prof[1].size() == numero[1]) {
      |                           ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...