Submission #958530


Source Code Expand

#include<stdio.h>
#include<algorithm>
#include<vector>
using namespace std;
vector<int>E[101000], L[101000];
int Num[101000], n, m, chk, C[3], cc;
long long Res;
void DFS(int a){
    int i;
    C[Num[a]]++;
    cc += E[a].size();
    for(i=0;i<E[a].size();i++){
        if(Num[E[a][i]] == -1){
            Num[E[a][i]] = (Num[a] + L[a][i])%3;
            DFS(E[a][i]);
        }
        else{
            if(Num[E[a][i]] != (Num[a] + L[a][i])%3)chk = 1;
        }
    }
}
int main(){
    int i, a, b, j;
    scanf("%d%d",&n,&m);
    for(i=1;i<=n;i++)Num[i]=-1;
    while(m--){
        scanf("%d%d",&a,&b);
        E[a].push_back(b);L[a].push_back(1);
        E[b].push_back(a);L[b].push_back(2);
    }
    for(i=1;i<=n;i++){
        if(Num[i] == -1){
            Num[i] = 0;
            chk = 0;
            cc = 0;
            for(j=0;j<3;j++)C[j]=0;
            DFS(i);
            if(chk){
                Res += 1ll * (C[0]+C[1]+C[2])*(C[0]+C[1]+C[2]);
            }
            else{
                if(!C[0]||!C[1]||!C[2])Res += cc/2;
                else Res += 1ll*C[0]*(C[1]+C[2])+1ll*C[1]*C[2];
            }
        }
    }
    printf("%lld\n",Res);
}

Submission Info

Submission Time
Task F - Blackout
User ainta
Language C++14 (GCC 5.4.1)
Score 1700
Code Size 1209 Byte
Status AC
Exec Time 76 ms
Memory 17920 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:24:24: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d",&n,&m);
                        ^
./Main.cpp:27:28: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d%d",&a,&b);
                            ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1700 / 1700
Status
AC × 3
AC × 53
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt, 1_18.txt, 1_19.txt, 1_20.txt, 1_21.txt, 1_22.txt, 1_23.txt, 1_24.txt, 1_25.txt, 1_26.txt, 1_27.txt, 1_28.txt, 1_29.txt, 1_30.txt, 1_31.txt, 1_32.txt, 1_33.txt, 1_34.txt, 1_35.txt, 1_36.txt, 1_37.txt, 1_38.txt, 1_39.txt, 1_40.txt, 1_41.txt, 1_42.txt, 1_43.txt, 1_44.txt, 1_45.txt, 1_46.txt, 1_47.txt, 1_48.txt, 1_49.txt
Case Name Status Exec Time Memory
0_00.txt AC 8 ms 4992 KB
0_01.txt AC 7 ms 4992 KB
0_02.txt AC 8 ms 4992 KB
1_00.txt AC 8 ms 4992 KB
1_01.txt AC 9 ms 5376 KB
1_02.txt AC 50 ms 11648 KB
1_03.txt AC 58 ms 17920 KB
1_04.txt AC 60 ms 17792 KB
1_05.txt AC 57 ms 17920 KB
1_06.txt AC 57 ms 17792 KB
1_07.txt AC 57 ms 17920 KB
1_08.txt AC 57 ms 17792 KB
1_09.txt AC 57 ms 17792 KB
1_10.txt AC 58 ms 17920 KB
1_11.txt AC 58 ms 17920 KB
1_12.txt AC 57 ms 17920 KB
1_13.txt AC 58 ms 17920 KB
1_14.txt AC 42 ms 12400 KB
1_15.txt AC 42 ms 12400 KB
1_16.txt AC 41 ms 12400 KB
1_17.txt AC 28 ms 7552 KB
1_18.txt AC 65 ms 12544 KB
1_19.txt AC 65 ms 12544 KB
1_20.txt AC 66 ms 12416 KB
1_21.txt AC 65 ms 12544 KB
1_22.txt AC 65 ms 12544 KB
1_23.txt AC 65 ms 12544 KB
1_24.txt AC 69 ms 12416 KB
1_25.txt AC 76 ms 12544 KB
1_26.txt AC 65 ms 12544 KB
1_27.txt AC 64 ms 12416 KB
1_28.txt AC 65 ms 12544 KB
1_29.txt AC 65 ms 12544 KB
1_30.txt AC 64 ms 12416 KB
1_31.txt AC 65 ms 12416 KB
1_32.txt AC 70 ms 12544 KB
1_33.txt AC 65 ms 12544 KB
1_34.txt AC 63 ms 11904 KB
1_35.txt AC 58 ms 10752 KB
1_36.txt AC 61 ms 11520 KB
1_37.txt AC 64 ms 12288 KB
1_38.txt AC 56 ms 10112 KB
1_39.txt AC 53 ms 9856 KB
1_40.txt AC 64 ms 12416 KB
1_41.txt AC 65 ms 12416 KB
1_42.txt AC 58 ms 11008 KB
1_43.txt AC 61 ms 10880 KB
1_44.txt AC 63 ms 12032 KB
1_45.txt AC 50 ms 9344 KB
1_46.txt AC 64 ms 12160 KB
1_47.txt AC 65 ms 12288 KB
1_48.txt AC 57 ms 10496 KB
1_49.txt AC 61 ms 11520 KB