import java.io.*; import java.util.*; public class Main_yukicoder416_1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int n = sc.nextInt(); int m = sc.nextInt(); int q = sc.nextInt(); Set hs = new HashSet<>(); for (int i = 0; i < m; i++) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; hs.add((long)a << 32 | b); } int[] c = new int[q]; int[] d = new int[q]; for (int i = 0; i < q; i++) { c[i] = sc.nextInt() - 1; d[i] = sc.nextInt() - 1; hs.remove((long)c[i] << 32 | d[i]); } UnionFindList uf = new UnionFindList(n); int[] ret = new int[n]; Arrays.fill(ret, -1); for (long e : hs) { int a = (int)(e >> 32); int b = (int)(e & 0xffff_ffff); uf.unite(a, b); } for (int i = q - 1; i >= 0; i--) { if(uf.same(c[i], d[i])) { continue; } if (uf.same(0, c[i])) { for (int e : uf.getList(d[i])) { ret[e] = i + 1; } } else if (uf.same(0, d[i])) { for (int e : uf.getList(c[i])) { ret[e] = i + 1; } } uf.unite(c[i], d[i]); } for (int i = 1; i < n; i++) { if (ret[i] == -1 && !uf.same(0, i)) { pr.println(0); } else { pr.println(ret[i]); } } pr.close(); sc.close(); } @SuppressWarnings("unused") private static class UnionFindList { int n; // cnt : 異なる集合の数 int cnt; // i2g : i番目の要素が属するグループ List i2g; // g2i : そのグループに属する要素のリスト List> g2i; UnionFindList(int n) { this.n = n; cnt = n; i2g = new ArrayList<>(n); g2i = new ArrayList<>(n); for (int i = 0; i < n; i++) { i2g.add(i); List tmp = new ArrayList<>(); tmp.add(i); g2i.add(tmp); } } // xのrootを求める int find(int x) { return i2g.get(x); } // xとyが同じ集合に属するのか boolean same(int x, int y) { return find(x) == find(y); } // xとyの属する集合を併合する void unite(int x, int y) { x = find(x); y = find(y); if (x == y) { return; } cnt--; // 要素数が大きい集合にmergeする(Quick Find Weighted?) if (g2i.get(x).size() > g2i.get(y).size()) { g2i.get(x).addAll(g2i.get(y)); for (int e : g2i.get(y)) { i2g.set(e, x); } g2i.set(y, null); } else { g2i.get(y).addAll(g2i.get(x)); for (int e : g2i.get(x)) { i2g.set(e, y); } g2i.set(x, null); } return; } public List getList(int x) { return g2i.get(find(x)); } // 要素xを含む集合の要素数 int count(int x) { return g2i.get(find(x)).size(); } // 異なる集合の数 int count() { return cnt; } } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } private boolean isPrintable(int ch) { return ch >= '!' && ch <= '~'; } private boolean isCRLF(int ch) { return ch == '\n' || ch == '\r'; } private int nextPrintable() { try { int ch; while ((ch = br.read()) != -1 && !isPrintable(ch)) { } return ch; } catch (IOException e) { throw new IllegalStateException(); } } String next() { try { int ch = nextPrintable(); StringBuilder sb = new StringBuilder(); while (isPrintable(ch)) { sb.appendCodePoint(ch); ch = br.read(); } return sb.toString(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { try { // parseInt boolean negative = false; int res = 0; int fc = nextPrintable(); if (fc < '0') { if (fc == '-') { negative = true; } else if (fc != '+') { throw new NumberFormatException(); } fc = br.read(); } int ch = fc; do { if (ch < '0' || ch > '9') { throw new NumberFormatException(); } res *= 10; res += ch - '0'; } while ((ch = br.read()) != -1 && isPrintable(ch)); // parseInt return negative ? -res : res; } catch (IOException e) { throw new IllegalStateException(); } } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } String nextLine() throws RuntimeException { try { int ch; while ((ch = br.read()) != -1 && !isCRLF(ch)) { } StringBuilder sb = new StringBuilder(); while (!isCRLF(ch)) { sb.appendCodePoint(ch); ch = br.read(); } return sb.toString(); } catch (IOException e) { throw new IllegalStateException(); } } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }