結果

問題 No.1640 簡単な色塗り
ユーザー stoqstoq
提出日時 2021-08-06 22:34:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,534 ms / 2,000 ms
コード長 3,157 bytes
コンパイル時間 4,576 ms
コンパイル使用メモリ 273,068 KB
実行使用メモリ 49,464 KB
最終ジャッジ日時 2024-06-29 15:36:30
合計ジャッジ時間 23,073 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 85 ms
30,088 KB
testcase_05 AC 86 ms
30,284 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 172 ms
19,120 KB
testcase_11 AC 126 ms
16,584 KB
testcase_12 AC 118 ms
15,348 KB
testcase_13 AC 355 ms
28,292 KB
testcase_14 AC 359 ms
28,356 KB
testcase_15 AC 71 ms
11,640 KB
testcase_16 AC 98 ms
13,880 KB
testcase_17 AC 271 ms
24,156 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 117 ms
15,180 KB
testcase_20 AC 184 ms
18,532 KB
testcase_21 AC 134 ms
16,156 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 181 ms
19,772 KB
testcase_24 AC 35 ms
8,152 KB
testcase_25 AC 117 ms
15,520 KB
testcase_26 AC 259 ms
22,328 KB
testcase_27 AC 68 ms
11,112 KB
testcase_28 AC 383 ms
27,368 KB
testcase_29 AC 272 ms
22,016 KB
testcase_30 AC 18 ms
7,956 KB
testcase_31 AC 243 ms
49,464 KB
testcase_32 AC 174 ms
33,524 KB
testcase_33 AC 87 ms
21,012 KB
testcase_34 AC 171 ms
36,068 KB
testcase_35 AC 86 ms
22,068 KB
testcase_36 AC 17 ms
7,704 KB
testcase_37 AC 24 ms
9,380 KB
testcase_38 AC 169 ms
36,684 KB
testcase_39 AC 58 ms
20,888 KB
testcase_40 AC 48 ms
16,068 KB
testcase_41 AC 119 ms
24,688 KB
testcase_42 AC 62 ms
19,536 KB
testcase_43 AC 84 ms
24,304 KB
testcase_44 AC 62 ms
17,504 KB
testcase_45 AC 45 ms
14,944 KB
testcase_46 AC 19 ms
8,308 KB
testcase_47 AC 13 ms
6,604 KB
testcase_48 AC 186 ms
35,092 KB
testcase_49 AC 6 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 296 ms
44,864 KB
testcase_53 AC 1,534 ms
35,640 KB
07_evil_01.txt AC 1,090 ms
57,952 KB
07_evil_02.txt AC 1,903 ms
90,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MOD_TYPE 1

#pragma region Macros

#include <bits/stdc++.h>
using namespace std;

#include <atcoder/all>
using namespace atcoder;

#if 0
#include <boost/multiprecision/cpp_int.hpp>
#include <boost/multiprecision/cpp_dec_float.hpp>
using Int = boost::multiprecision::cpp_int;
using lld = boost::multiprecision::cpp_dec_float_100;
#endif

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

using ll = long long int;
using ld = long double;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using pld = pair<ld, ld>;
template <typename Q_type>
using smaller_queue = priority_queue<Q_type, vector<Q_type>, greater<Q_type>>;

constexpr ll MOD = (MOD_TYPE == 1 ? (ll)(1e9 + 7) : 998244353);
//using mint = static_modint<MOD>;
constexpr int INF = (int)1e9 + 10;
constexpr ll LINF = (ll)4e18;
constexpr double PI = acos(-1.0);
constexpr double EPS = 1e-11;
constexpr int Dx[] = {0, 0, -1, 1, -1, 1, -1, 1, 0};
constexpr int Dy[] = {1, -1, 0, 0, -1, -1, 1, 1, 0};

#define REP(i, m, n) for (ll i = m; i < (ll)(n); ++i)
#define rep(i, n) REP(i, 0, n)
#define REPI(i, m, n) for (int i = m; i < (int)(n); ++i)
#define repi(i, n) REPI(i, 0, n)
#define MP make_pair
#define MT make_tuple
#define YES(n) cout << ((n) ? "YES" : "NO") << "\n"
#define Yes(n) cout << ((n) ? "Yes" : "No") << "\n"
#define possible(n) cout << ((n) ? "possible" : "impossible") << "\n"
#define Possible(n) cout << ((n) ? "Possible" : "Impossible") << "\n"
#define Yay(n) cout << ((n) ? "Yay!" : ":(") << "\n"
#define all(v) v.begin(), v.end()
#define NP(v) next_permutation(all(v))
#define dbg(x) cerr << #x << ":" << x << "\n";

struct io_init
{
  io_init()
  {
    cin.tie(0);
    ios::sync_with_stdio(false);
    cout << setprecision(30) << setiosflags(ios::fixed);
  };
} io_init;
template <typename T>
inline bool chmin(T &a, T b)
{
  if (a > b)
  {
    a = b;
    return true;
  }
  return false;
}
template <typename T>
inline bool chmax(T &a, T b)
{
  if (a < b)
  {
    a = b;
    return true;
  }
  return false;
}
inline ll CEIL(ll a, ll b)
{
  return (a + b - 1) / b;
}
template <typename A, size_t N, typename T>
inline void Fill(A (&array)[N], const T &val)
{
  fill((T *)array, (T *)(array + N), val);
}
template <typename T, typename U>
constexpr istream &operator>>(istream &is, pair<T, U> &p) noexcept
{
  is >> p.first >> p.second;
  return is;
}
template <typename T, typename U>
constexpr ostream &operator<<(ostream &os, pair<T, U> &p) noexcept
{
  os << p.first << " " << p.second;
  return os;
}
#pragma endregion

void solve()
{
  int n;
  cin >> n;
  vector<int> a(n), b(n);
  rep(i, n)
  {
    cin >> a[i] >> b[i];
    a[i]--, b[i]--;
  }
  const int S = n * 2, T = S + 1;
  mf_graph<int> G(n * 2 + 2);
  rep(i, n)
  {
    G.add_edge(i, a[i] + n, 1);
  }
  rep(i, n)
  {
    G.add_edge(i, b[i] + n, 1);
  }
  rep(i, n)
  {
    G.add_edge(S, i, 1);
    G.add_edge(i + n, T, 1);
  }
  int c = G.flow(S, T);
  if (c != n)
  {
    Yes(0);
    return;
  }
  Yes(1);
  rep(i, n)
  {
    if (G.get_edge(i).flow == 1)
      cout << a[i] + 1 << "\n";
    else
      cout << b[i] + 1 << "\n";
  }
}

int main()
{
  solve();
}
0