Created
May 22, 2014 15:06
-
-
Save KT-Yeh/6c2ca37d54992011ee27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <vector> | |
#include <set> | |
#include <map> | |
#include <string> | |
#include <iostream> | |
using namespace std; | |
map<string, int> Map; | |
string numToStr[105]; | |
vector<int> edge[105]; | |
int dfs_clock, dfn[105], low[105]; | |
set<string> ans; | |
void Initial(int N); | |
void dfs(int cur, int parent); | |
int main() | |
{ | |
ios::sync_with_stdio(false); | |
int N, R, Case = 1; | |
while (cin >> N && N) { | |
Initial(N); | |
// Input | |
string name1, name2; | |
for (int i = 1; i <= N; ++i) { | |
cin >> name1; | |
Map[name1] = i; | |
numToStr[i] = name1; | |
} | |
cin >> R; | |
for (int i = 0; i < R; ++i) { | |
cin >> name1 >> name2; | |
edge[Map[name1]].push_back(Map[name2]); | |
edge[Map[name2]].push_back(Map[name1]); | |
} | |
// Find Cut Vertex | |
for (int i = 1; i <= N; ++i) | |
if (!dfn[i]) dfs(i, -1); | |
// Output | |
if (Case != 1) cout << endl; | |
cout << "City map #" << Case++ << ": " | |
<< ans.size() << " camera(s) found" << endl; | |
for (set<string>::iterator iter = ans.begin(); iter != ans.end(); ++iter) | |
cout << *iter << endl; | |
} | |
} | |
void Initial(int N) | |
{ | |
for (int i = 0; i <= N; ++i) { | |
edge[i].clear(); | |
dfn[i] = low[i] = 0; | |
} | |
dfs_clock = 0; | |
Map.clear(); | |
ans.clear(); | |
} | |
void dfs(int cur, int parent) | |
{ | |
int child = 0; | |
bool flag = false; | |
dfn[cur] = low[cur] = ++dfs_clock; | |
for (int nxt : edge[cur]) { | |
if (!dfn[nxt]) { | |
++child; | |
dfs(nxt, cur); | |
low[cur] = min(low[cur], low[nxt]); | |
if ((parent == -1 && child > 1) || (parent != -1 && low[nxt] >= dfn[cur])) | |
ans.insert(numToStr[cur]); | |
} | |
else if (nxt != parent) | |
low[cur] = min(low[cur], dfn[nxt]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment