페이지

9372번: 상근이의 여행

https://www.acmicpc.net/problem/9372


$O(tm)$


#include<cstdio>
int t, n, m;
int main() {
    scanf("%d", &t);
    while (t--) {
        scanf("%d %d", &n, &m);
        while (m--) scanf("%*d %*d");
        printf("%d\n", n - 1);
    }
    return 0;
}

댓글 없음 :

댓글 쓰기