結果

問題 No.1640 簡単な色塗り
ユーザー harurunharurun
提出日時 2021-06-16 21:47:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,591 ms / 2,000 ms
コード長 3,907 bytes
コンパイル時間 966 ms
コンパイル使用メモリ 96,532 KB
実行使用メモリ 46,208 KB
最終ジャッジ日時 2024-06-29 14:44:52
合計ジャッジ時間 28,053 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 207 ms
28,544 KB
testcase_05 AC 226 ms
34,764 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 210 ms
22,384 KB
testcase_11 AC 162 ms
19,212 KB
testcase_12 AC 149 ms
17,676 KB
testcase_13 AC 375 ms
31,672 KB
testcase_14 AC 358 ms
32,044 KB
testcase_15 AC 107 ms
14,012 KB
testcase_16 AC 134 ms
16,424 KB
testcase_17 AC 294 ms
29,140 KB
testcase_18 AC 21 ms
6,940 KB
testcase_19 AC 143 ms
17,528 KB
testcase_20 AC 214 ms
21,660 KB
testcase_21 AC 164 ms
18,752 KB
testcase_22 AC 15 ms
6,944 KB
testcase_23 AC 230 ms
23,024 KB
testcase_24 AC 55 ms
10,308 KB
testcase_25 AC 150 ms
17,824 KB
testcase_26 AC 277 ms
26,764 KB
testcase_27 AC 94 ms
13,556 KB
testcase_28 AC 348 ms
30,436 KB
testcase_29 AC 260 ms
26,180 KB
testcase_30 AC 51 ms
9,940 KB
testcase_31 AC 1,205 ms
41,680 KB
testcase_32 AC 1,009 ms
33,432 KB
testcase_33 AC 526 ms
24,228 KB
testcase_34 AC 793 ms
29,564 KB
testcase_35 AC 521 ms
25,760 KB
testcase_36 AC 49 ms
9,684 KB
testcase_37 AC 80 ms
12,088 KB
testcase_38 AC 1,159 ms
36,300 KB
testcase_39 AC 221 ms
17,756 KB
testcase_40 AC 240 ms
17,912 KB
testcase_41 AC 833 ms
32,452 KB
testcase_42 AC 308 ms
20,872 KB
testcase_43 AC 321 ms
22,724 KB
testcase_44 AC 296 ms
21,400 KB
testcase_45 AC 195 ms
18,380 KB
testcase_46 AC 63 ms
10,960 KB
testcase_47 AC 32 ms
8,496 KB
testcase_48 AC 1,265 ms
35,416 KB
testcase_49 AC 12 ms
6,940 KB
testcase_50 AC 3 ms
6,940 KB
testcase_51 AC 3 ms
6,944 KB
testcase_52 AC 1,591 ms
40,436 KB
testcase_53 AC 1,418 ms
46,208 KB
07_evil_01.txt AC 1,113 ms
66,448 KB
07_evil_02.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <atcoder/internal_queue>
#include <cassert>
#include <limits>
#include <queue>
#include <vector>
#include <time.h>
#include <chrono>
#include <sys/time.h>
#include <iostream>
using namespace std;
using namespace atcoder;
#define ll long long
#define INF 1000000000000000000
//namespace atcoder {

vector<ll> ans(200010,-1);

    struct _edge {
        int to, rev;
        ll cap;
    };

template <class Cap> struct mf_graph {
  public:
    mf_graph() : _n(0) {}
    mf_graph(int n) : _n(n), g(n) {}

    int add_edge(int from, int to, Cap cap) {
        assert(0 <= from && from < _n);
        assert(0 <= to && to < _n);
        assert(0 <= cap);
        int m = int(pos.size());
        pos.push_back({from, int(g[from].size())});
        int from_id = int(g[from].size());
        int to_id = int(g[to].size());
        if (from == to) to_id++;
        g[from].push_back(_edge{to, to_id, cap});
        g[to].push_back(_edge{from, from_id, 0});
        return m;
    }

    struct edge {
        int from, to;
        Cap cap, flow;
    };

    edge get_edge(int i) {
        int m = int(pos.size());
        assert(0 <= i && i < m);
        auto _e = g[pos[i].first][pos[i].second];
        auto _re = g[_e.to][_e.rev];
        return edge{pos[i].first, _e.to, _e.cap + _re.cap, _re.cap};
    }

    Cap flow(int s, int t) {
        return flow(s, t, std::numeric_limits<Cap>::max());
    }
    Cap flow(int s, int t, Cap flow_limit) {
        assert(0 <= s && s < _n);
        assert(0 <= t && t < _n);
        assert(s != t);

        std::vector<int> level(_n), iter(_n);
        internal::simple_queue<int> que;

        auto bfs = [&]() {
            std::fill(level.begin(), level.end(), -1);
            level[s] = 0;
            que.clear();
            que.push(s);
            while (!que.empty()) {
                int v = que.front();
                que.pop();
                for (auto e : g[v]) {
                    if (e.cap == 0 || level[e.to] >= 0) continue;
                    level[e.to] = level[v] + 1;
                    if (e.to == t) return;
                    que.push(e.to);
                }
            }
        };
        auto dfs = [&](auto self, int v, Cap up) {
            if (v == s) return up;
            Cap res = 0;
            int level_v = level[v];
            for (int& i = iter[v]; i < int(g[v].size()); i++) {
                _edge& e = g[v][i];
                if (level_v <= level[e.to] || g[e.to][e.rev].cap == 0) continue;
                Cap d =
                    self(self, e.to, std::min(up - res, g[e.to][e.rev].cap));
                if (d <= 0) continue;
                g[v][i].cap += d;
                g[e.to][e.rev].cap -= d;
                res += d;
                if (res == up) break;
            }
            return res;
        };

        Cap flow = 0;
        while (flow < flow_limit) {
            bfs();
            if (level[t] == -1) break;
            std::fill(iter.begin(), iter.end(), 0);
            while (flow < flow_limit) {
                Cap f = dfs(dfs, t, flow_limit - flow);
                if (!f) break;
                flow += f;
            }
        }
        return flow;
    }
    int _n;

    std::vector<std::pair<int, int>> pos;
    std::vector<std::vector<_edge>> g;    
};

//}  // namespace atcoder

int main(){
  ll N,A,B;
  cin>>N;
  mf_graph<ll> F(2*N+2);
  for(int i=0;i<N;i++){
    cin>>A>>B;
    A--;B--;
    F.add_edge(2*N,i,1);
    F.add_edge(i,N+A,1);
    if(A!=B)F.add_edge(i,N+B,1);
    F.add_edge(N+i,2*N+1,1);
  }
  ll cnt=F.flow(2*N,2*N+1);
  if(cnt!=N){
    cout<<"No\n";
    return 0;
  }
  cout<<"Yes\n";
  for(int i=N;i<2*N;i++){
    ll s=F.g.at(i).size();
    for(int j=0;j<s;j++){
      if(F.g.at(i).at(j).cap!=0){
        ans.at(F.g.at(i).at(j).to)=i-N+1;
      }
    }
  }
  for(int i=0;i<N;i++){
    cout<<ans.at(i)<<endl;
  }
  return 0;
}
0