답안 #864609

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
864609 2023-10-23T10:26:53 Z vnm06 철인 이종 경기 (APIO18_duathlon) C++14
0 / 100
1000 ms 21236 KB
#include<bits/stdc++.h>
#define endl '\n'

using namespace std;

long long n, m, en;
vector<int> gr[300005];

long long ans=0;
int post[3005];
int vzm[3005];

void dfs(int v)
{
    post[v]=1;
    int brs=gr[v].size();
    for(int i=0; i<brs; i++)
    {
        int nv=gr[v][i];
        if(post[nv]==1) continue;
        if(vzm[nv]==1) {vzm[v]=1; continue;}
        if(post[nv]) continue;
        dfs(nv);
    }
    post[v]=2;
}

int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    cin>>n>>m;
    for(int i=0; i<m; i++)
    {
        int v, u;
        cin>>v>>u;
        gr[v].push_back(u);
        gr[u].push_back(v);
    }
    for(int i=1; i<=n; i++)
    {
        for(int j=1; j<=n; j++)
        {
            if(i==j) continue;
            en=j;
            post[en]=2;
            vzm[en]=1;
            dfs(i);
            for(int k=1; k<=n; k++)
            {
                if(k==i || k==j) continue;
                ans+=vzm[k];
                post[k]=vzm[k]=0;
            }
        }
    }
    cout<<ans<<endl;
    return 0;
}
/**
8 7
1 2
2 3
2 4
3 5
5 6
6 7
6 8


*/
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 7256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 7256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 482 ms 21124 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1063 ms 7516 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 467 ms 21236 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1044 ms 7516 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 466 ms 21236 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 7256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 7256 KB Output isn't correct
2 Halted 0 ms 0 KB -