Battle Over Cities

查看题解 查看答案
题目描述
Time Limit: 1000 ms
Memory Limit: 256 mb

请先登录再刷题,不会做的题目右上可以查看题解和答案~

输入输出格式
输入描述:
Each input file contains one test case. Each case starts with a line containing 3 numbers $N$ ($< 1000$), $M$ and $K$, which are the total number of cities, the number of remaining highways, and the number of cities to be checked, respectively. Then $M$ lines follow, each describes a highway by 2 integers, which are the numbers of the cities the highway connects. The cities are numbered from 1 to $N$. Finally there is a line containing $K$ numbers, which represent the cities we concern.
输出描述:
For each of the $K$ cities, output in a line the number of highways need to be repaired if that city is lost.
输入输出样例
输入样例#:
3 2 3
1 2
1 3
1 2 3
输出样例#:
复制
1
0
0
重置

提交代码后在此处可查看状态