1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
| #include <iostream> #include <cstdio> #include <cstring> #include <cctype> #include <algorithm>
#include <vector> #include <string> #include <stack> #include <queue>
#include <map> #include <cmath>
#define For(a,x,y) for (int a = x; a <= y; ++a) #define Forw(a,x,y) for (int a = x; a < y; ++a) #define Bak(a,y,x) for (int a = y; a >= x; --a) #define head(a) Head[a].id #define nowcolor(a) Head[a].color #define visited(a) Head[a].used
namespace FastIO { inline int getint() { int s = 0, x = 1; char ch = getchar(); while (!isdigit(ch)) { if (ch == '-') x = -1; ch = getchar(); } while (isdigit(ch)) { s = s * 10 + ch - '0'; ch = getchar(); } return s * x; } inline void __basic_putint(int x) { if (x < 0) { x = -x; putchar('-'); } if (x >= 10) __basic_putint(x / 10); putchar(x % 10 + '0'); } inline void putint(int x, char external) { __basic_putint(x); putchar(external); } }
namespace Solution { int n, m, ans; int sum0, sum1; struct Graph { static const int MAXN = 10000 + 10; static const int MAXM = 100000 + 10; struct Node { int color, used, id; Node() { color = used = id = 0; } } Head[MAXN]; struct Edge { int now, next; } edge[MAXM * 2]; int cnt; inline void addEdge(int prev, int next, bool isR = true) { if (isR) { addEdge(next, prev, false); } edge[++cnt].now = next; edge[cnt].next = head(prev); head(prev) = cnt; } inline bool Color(int __id, int nowColor) { if (visited(__id)) { return nowcolor(__id) == nowColor; } visited(__id) = true; nowcolor(__id) = nowColor; if (nowColor) ++sum1; else ++sum0; bool __ans = true; for (int e = head(__id); e && __ans; e = edge[e].next) { int now = edge[e].now; __ans = __ans & Color(now, nowColor ^ 1); } return __ans; } } g1; void __EXIT() { puts("Impossible"); exit(0); } }
signed main() { #define HANDWER_FILE #ifndef HANDWER_FILE freopen("testdata.in", "r", stdin); freopen("testdata.out", "w", stdout); #endif using namespace Solution; using FastIO::getint; n = getint(); m = getint(); For (i, 1, m) { int prev = getint(); int next = getint(); g1.addEdge(prev, next); } for (int i = 1; i <= n; ++i) { if (g1.visited(i)) continue; sum0 = sum1 = 0; if (!g1.Color(i, 0)) __EXIT(); ans += std::min(sum0, sum1); } FastIO::putint(ans, '\n'); return 0; }
|