#include <iostream>
#include <unordered_set>
#include <unordered_map>
#include <vector>
#include <string>
using namespace std;
class Solution {
public:
vector<string> findItinerary(vector<vector<string>>& tickets) {
unordered_set<string> cities;
for (const auto& flight : tickets)
{
for (const auto& city : flight)
{
if (cities.count(city) > 0)
cities.erase(city);
else
cities.insert(city);
}
}
unordered_map<string, pair<string, string>> data;
for (const auto& flight : tickets)
{
const auto& city1 = flight[1];
const auto& city2 = flight[2];
if (0 == data.count(city1))
{
if (data[city1].first.empty())
data[city1].first = city2;
else
data[city1].second = city2;
}
if (0 == data.count(city2))
{
if (data[city2].first.empty())
data[city2].first = city1;
else
data[city2].second = city1;
}
}
vector<string> result;
auto city = *cities.begin();
auto cityLast = *(++cities.begin());
unordered_set<string> visited;
while (city != cityLast)
{
result.push_back(city);
visited.insert(city);
if (visited.count(data[city].first) > 0)
city = data[city].second;
else
city = data[city].first;
}
result.push_back(city);
return result;
}
};
int main() {
// your code goes here
return 0;
}