Submission #2503121


Source Code Expand

#include <algorithm>
#include <cassert>
#include <cstring>
#include <iostream>
#include <vector>

using namespace std;

#define FOR(i, a, b) for (int i = (a); i < (b); ++i)
#define REP(i, n) FOR(i, 0, n)
#define TRACE(x) cout << #x << " = " << x << endl
#define _ << " _ " <<

typedef long long llint;

const int MAX = 100100;

struct Dp {
  int loop, stay;
  bool all_black;
};

Dp fdown[MAX];
Dp fup[MAX];

char colors[MAX];
int parent[MAX];
vector<int> E[MAX];

Dp compute(int color, int total_loop, int min_diff, int cnt) {
  if (cnt == 0) {
    if (color) return {0, 0, true};
    else return {0, 0, false};
  } else {
    int nloop_color = color ^ 1 ^ (cnt % 2);
    int loop = total_loop + (nloop_color == 0) + 2*cnt;
    int stay = total_loop + min_diff + (nloop_color == 1) + 2*cnt - 1;
    return {loop, stay, false};
  }
}

int computeRoot(int color, int total_loop, int min_diff, int cnt) {
  if (cnt == 0) return color == 0 ? 1 : 0;

  int nloop_color = color ^ (cnt % 2);
  int loop = total_loop + (nloop_color == 0) + 2*cnt;
  int stay = total_loop + min_diff + (nloop_color == 1) + 2*cnt - 1;
  return min(stay, loop);
}

void dfs_down(int x, int dad) {
  int total_loop = 0;
  int min_diff = 0;
  int cnt = 0;
  for (int y: E[x]) {
    if (y != dad) {
      dfs_down(y, x);

      if (!fdown[y].all_black) {
        cnt++;
        total_loop += fdown[y].loop;
        assert(fdown[y].stay <= fdown[y].loop);
        min_diff = min(min_diff, fdown[y].stay - fdown[y].loop);
      }
    }
  }

  fdown[x] = compute(colors[x], total_loop, min_diff, cnt);
}

int dfs_up(int x, int dad) {
  int min_diff1 = 0, min_diff2 = 0, cnt = 0, total_loop = 0;

  auto update = [&] (Dp f) {
    if (!f.all_black) {
      cnt++;
      total_loop += f.loop;
      int diff = f.stay - f.loop;
      if (diff <= min_diff1) min_diff2 = min_diff1, min_diff1 = diff;
      else if (diff < min_diff2) min_diff2 = diff;
    }
  };

  update(fup[x]);

  for (int y: E[x]) {
    if (y != dad) {
      update(fdown[y]);
    }
  }

  int ret = computeRoot(colors[x], total_loop, min_diff1, cnt);

  for (int y: E[x]) {
    if (y != dad) {
      if (fdown[y].all_black) {
        fup[y] = compute(colors[x], total_loop, min_diff1, cnt);
      } else {
        int diff = fdown[y].stay - fdown[y].loop;
        fup[y] = compute(colors[x], total_loop - fdown[y].loop, min_diff1 == diff ? min_diff2 : min_diff1, cnt - 1);
      }

      ret = min(ret, dfs_up(y, x));
    }
  }

  return ret;
}

int main(void) {
  int N;
  scanf("%d", &N);

  REP(i, N-1) {
    int a, b;
    scanf("%d %d", &a, &b);
    --a, --b;
    E[a].push_back(b);
    E[b].push_back(a);
  }
  scanf("%s", colors);
  REP(i, N) colors[i] = colors[i] == 'B';

  dfs_down(0, -1);

  fup[0] = {0, 0, true};
  int ret = dfs_up(0, -1);
  printf("%d\n", ret);
  return 0;
}

Submission Info

Submission Time
Task F - Monochrome Cat
User ikatanic
Language C++14 (GCC 5.4.1)
Score 800
Code Size 2952 Byte
Status AC
Exec Time 57 ms
Memory 17792 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:112:18: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &N);
                  ^
./Main.cpp:116:27: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d", &a, &b);
                           ^
./Main.cpp:121:22: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%s", colors);
                      ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 800 / 800
Status
AC × 4
AC × 118
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt, 1_012.txt, 1_013.txt, 1_014.txt, 1_015.txt, 1_016.txt, 1_017.txt, 1_018.txt, 1_019.txt, 1_020.txt, 1_021.txt, 1_022.txt, 1_023.txt, 1_024.txt, 1_025.txt, 1_026.txt, 1_027.txt, 1_028.txt, 1_029.txt, 1_030.txt, 1_031.txt, 1_032.txt, 1_033.txt, 1_034.txt, 1_035.txt, 1_036.txt, 1_037.txt, 1_038.txt, 1_039.txt, 1_040.txt, 1_041.txt, 1_042.txt, 1_043.txt, 1_044.txt, 1_045.txt, 1_046.txt, 1_047.txt, 1_048.txt, 1_049.txt, 1_050.txt, 1_051.txt, 1_052.txt, 1_053.txt, 1_054.txt, 1_055.txt, 1_056.txt, 1_057.txt, 1_058.txt, 1_059.txt, 1_060.txt, 1_061.txt, 1_062.txt, 1_063.txt, 1_064.txt, 1_065.txt, 1_066.txt, 1_067.txt, 1_068.txt, 1_069.txt, 1_070.txt, 1_071.txt, 1_072.txt, 1_073.txt, 1_074.txt, 1_075.txt, 1_076.txt, 1_077.txt, 1_078.txt, 1_079.txt, 1_080.txt, 1_081.txt, 1_082.txt, 1_083.txt, 1_084.txt, 1_085.txt, 1_086.txt, 1_087.txt, 1_088.txt, 1_089.txt, 1_090.txt, 1_091.txt, 1_092.txt, 1_093.txt, 1_094.txt, 1_095.txt, 1_096.txt, 1_097.txt, 1_098.txt, 1_099.txt, 1_100.txt, 1_101.txt, 1_102.txt, 1_103.txt, 1_104.txt, 1_105.txt, 1_106.txt, 1_107.txt, 1_108.txt, 1_109.txt, 1_110.txt, 1_111.txt, 1_112.txt, 1_113.txt, 1_114.txt, 1_115.txt, 1_116.txt
Case Name Status Exec Time Memory
0_000.txt AC 3 ms 4352 KB
0_001.txt AC 3 ms 4352 KB
0_002.txt AC 3 ms 4352 KB
0_003.txt AC 3 ms 4352 KB
1_003.txt AC 3 ms 4352 KB
1_004.txt AC 3 ms 4352 KB
1_005.txt AC 3 ms 4352 KB
1_006.txt AC 3 ms 4352 KB
1_007.txt AC 3 ms 4352 KB
1_008.txt AC 3 ms 4352 KB
1_009.txt AC 3 ms 4352 KB
1_010.txt AC 3 ms 4352 KB
1_011.txt AC 3 ms 4352 KB
1_012.txt AC 3 ms 4352 KB
1_013.txt AC 3 ms 4352 KB
1_014.txt AC 3 ms 4352 KB
1_015.txt AC 3 ms 4352 KB
1_016.txt AC 3 ms 4352 KB
1_017.txt AC 3 ms 4352 KB
1_018.txt AC 3 ms 4352 KB
1_019.txt AC 3 ms 4352 KB
1_020.txt AC 3 ms 4352 KB
1_021.txt AC 3 ms 4352 KB
1_022.txt AC 3 ms 4352 KB
1_023.txt AC 3 ms 4352 KB
1_024.txt AC 3 ms 4352 KB
1_025.txt AC 3 ms 4352 KB
1_026.txt AC 3 ms 4352 KB
1_027.txt AC 3 ms 4352 KB
1_028.txt AC 3 ms 4352 KB
1_029.txt AC 3 ms 4352 KB
1_030.txt AC 3 ms 4352 KB
1_031.txt AC 3 ms 4352 KB
1_032.txt AC 3 ms 4352 KB
1_033.txt AC 3 ms 4352 KB
1_034.txt AC 3 ms 4352 KB
1_035.txt AC 3 ms 4352 KB
1_036.txt AC 3 ms 4352 KB
1_037.txt AC 3 ms 4352 KB
1_038.txt AC 3 ms 4352 KB
1_039.txt AC 3 ms 4352 KB
1_040.txt AC 3 ms 4352 KB
1_041.txt AC 3 ms 4352 KB
1_042.txt AC 3 ms 4352 KB
1_043.txt AC 3 ms 4352 KB
1_044.txt AC 3 ms 4352 KB
1_045.txt AC 19 ms 8320 KB
1_046.txt AC 23 ms 9984 KB
1_047.txt AC 51 ms 14848 KB
1_048.txt AC 42 ms 13568 KB
1_049.txt AC 36 ms 11776 KB
1_050.txt AC 32 ms 11392 KB
1_051.txt AC 27 ms 7800 KB
1_052.txt AC 8 ms 5120 KB
1_053.txt AC 31 ms 8312 KB
1_054.txt AC 12 ms 5884 KB
1_055.txt AC 26 ms 7800 KB
1_056.txt AC 16 ms 6396 KB
1_057.txt AC 3 ms 4480 KB
1_058.txt AC 23 ms 7552 KB
1_059.txt AC 17 ms 6656 KB
1_060.txt AC 37 ms 9600 KB
1_061.txt AC 41 ms 10368 KB
1_062.txt AC 23 ms 7936 KB
1_063.txt AC 26 ms 6912 KB
1_064.txt AC 19 ms 6144 KB
1_065.txt AC 5 ms 4480 KB
1_066.txt AC 35 ms 7932 KB
1_067.txt AC 9 ms 5120 KB
1_068.txt AC 22 ms 6528 KB
1_069.txt AC 13 ms 5376 KB
1_070.txt AC 23 ms 6272 KB
1_071.txt AC 40 ms 7936 KB
1_072.txt AC 25 ms 6528 KB
1_073.txt AC 6 ms 4608 KB
1_074.txt AC 5 ms 4480 KB
1_075.txt AC 21 ms 6144 KB
1_076.txt AC 49 ms 8448 KB
1_077.txt AC 38 ms 7808 KB
1_078.txt AC 15 ms 5504 KB
1_079.txt AC 21 ms 6144 KB
1_080.txt AC 23 ms 6400 KB
1_081.txt AC 54 ms 13568 KB
1_082.txt AC 50 ms 13952 KB
1_083.txt AC 57 ms 17792 KB
1_084.txt AC 50 ms 14208 KB
1_085.txt AC 55 ms 16512 KB
1_086.txt AC 56 ms 16896 KB
1_087.txt AC 35 ms 8952 KB
1_088.txt AC 34 ms 8952 KB
1_089.txt AC 35 ms 8952 KB
1_090.txt AC 34 ms 8952 KB
1_091.txt AC 33 ms 8952 KB
1_092.txt AC 32 ms 8952 KB
1_093.txt AC 51 ms 11264 KB
1_094.txt AC 51 ms 13056 KB
1_095.txt AC 49 ms 11904 KB
1_096.txt AC 52 ms 12800 KB
1_097.txt AC 53 ms 12032 KB
1_098.txt AC 51 ms 12544 KB
1_099.txt AC 43 ms 8700 KB
1_100.txt AC 44 ms 8700 KB
1_101.txt AC 42 ms 8700 KB
1_102.txt AC 44 ms 8700 KB
1_103.txt AC 42 ms 8700 KB
1_104.txt AC 42 ms 8700 KB
1_105.txt AC 48 ms 8576 KB
1_106.txt AC 49 ms 8576 KB
1_107.txt AC 47 ms 8576 KB
1_108.txt AC 48 ms 8576 KB
1_109.txt AC 48 ms 8576 KB
1_110.txt AC 48 ms 8576 KB
1_111.txt AC 52 ms 8576 KB
1_112.txt AC 50 ms 8576 KB
1_113.txt AC 48 ms 8576 KB
1_114.txt AC 50 ms 8576 KB
1_115.txt AC 51 ms 8576 KB
1_116.txt AC 50 ms 8576 KB