結果

問題 No.2822 Lights Up! (Tree Edition)
ユーザー KudeKude
提出日時 2024-07-26 23:17:31
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 1,336 bytes
コンパイル時間 3,672 ms
コンパイル使用メモリ 278,796 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-07-26 23:17:40
合計ジャッジ時間 8,430 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 142
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  VI p(n);
  for (int i = 1; i < n; i++) cin >> p[i], p[i]--;
  string s;
  cin >> s;
  vector<char> deg(n);
  for (int i = 1; i < n; i++) if (s[i-1] == '#') {
    deg[i] ^= 1;
    deg[p[i]] ^= 1;
  }
  dsu uf(n);
  int k;
  cin >> k;
  rep(_, k) {
    int u, v;
    cin >> u >> v;
    uf.merge(u - 1, v - 1);
  }
  bool ok = true;
  for (auto g : uf.groups()) {
    char parity = false;
    for (int v : g) parity ^= deg[v];
    if (parity) {
      ok = false;
      break;
    }
  }
  cout << (ok ? "Yes\n" : "No\n");
}
0