답안 #1026895

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1026895 2024-07-18T13:10:35 Z 12345678 Love Polygon (BOI18_polygon) C++17
0 / 100
2000 ms 16988 KB
#include <bits/stdc++.h>

using namespace std;

const int nx=1e5+5;

int n, t, vs[nx], l[nx], res, cnt;
string su[nx], sv[nx];
map<string, int> mp;

int main()
{
    cin.tie(NULL)->sync_with_stdio(false);
    cin>>n;
    for (int i=1; i<=n; i++) cin>>su[i]>>sv[i], mp[su[i]]=mp[sv[i]]=0;
    if (n%2) return cout<<-1, 0;
    for (auto &[x, y]:mp) y=++t;
    for (int i=1; i<=n; i++) l[mp[su[i]]]=mp[sv[i]];
    for (int i=1; i<=n; i++)
    {
        if (vs[i]) continue;
        int sz=1, tmp=i;
        vs[i]=1;
        while (l[tmp]!=i) sz++, tmp=l[tmp], vs[tmp]=1;
        if (sz==2) continue;
        res+=sz/2;
        if (sz%2) cnt++;
    }
    res+=cnt/2;
    cout<<res;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2032 ms 6748 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 6748 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2056 ms 16988 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2032 ms 6748 KB Time limit exceeded
2 Halted 0 ms 0 KB -