Codeforces Round #407 (Div. 2), problem: (D) Weird journey Solution in C

#include<bits/stdc++.h>
#define ll long long
using namespace std;
ll in[1000001];
vector<int>adj[1000001];
ll ans=0;
bool g[1000001];
int dfs(int cur)
{
  g[cur]=true;
  int k,cnt=1;
  for(k=0;k<adj[cur].size();k++)
  {
    if(g[adj[cur][k]]==false)
    {
      cnt+=dfs(adj[cur][k]);
    }
  }
  return cnt;
};
ll ct[1000001];
int main()
{
  int n,m,i,u,v;
  cin>>n>>m;
  for(i=0;i<m;i++)
  {
    scanf("%d%d",&u,&v);
    if(u==v)
     ct[u]++;
    else
    {
     adj[u].push_back(v);
     adj[v].push_back(u);
     in[u]++;
     in[v]++;
    }
  }
  int cur=0;
  ll ans=0;
  for(i=1;i<=n;i++)
  {
    if(g[i]==false)
    {
      int tmp=dfs(i);
      if(tmp>1)
       cur++;
      if(tmp==1 && ct[i]>0)
       cur++;
    }
  }
  if(cur>1)
   cout<<"0\n";
  else
  {
    for(i=1;i<=n;i++)
    {
      if(in[i]>1)
      {
        ll tmp=(in[i]*(in[i]-1))/2;
        ans+=tmp;
      }
    }
    ll pt=0,sum=0;
    for(i=1;i<=n;i++)
    {
      pt+=ct[i];
      sum+=in[i];
    }
    sum/=2;
    ans+=(pt*sum);
    ans+=(pt*(pt-1))/2;
    cout<<ans;
  }
  return 0;
}

China’s three telecom giants...

China’s telecommunications landscape is undergoing a monumental paradigm shift....

Fangzhou Ranked among 2025...

In a significant milestone for the digital healthcare sector,...

Why Everyone is Obsessed with the Wireless Karaoke Microphone

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Why Everyone is Obsessed with the Sunset Projection LED Lamp

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

China’s three telecom giants race into the AI token economy

China’s telecommunications landscape is undergoing a monumental paradigm shift. The nation's three state-owned telecom giants—China Mobile, China Telecom, and China Unicom—are aggressively moving beyond...

Why Everyone is Obsessed with the USB Rechargeable Lighter

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Why Everyone is Obsessed with the AeroPress Coffee Maker

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Fangzhou Ranked among 2025 Guangzhou AI Innovation “Most Promising Enterprises” for AI‑Powered Chronic Disease Services

In a significant milestone for the digital healthcare sector, Fangzhou has been officially ranked among the 2025 Guangzhou AI Innovation 'Most Promising Enterprises' list....

Why Everyone is Obsessed with the Universal Car Cleaning Gel

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Why Everyone is Obsessed with the Portable Door Lock for Travel

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Infected with TDSS and Google Keeps redirecting

Dealing with TDSS Rootkit Infections and Google Search Redirects Computer security is a continuous battle, and some threats are significantly more stubborn than others. A...