Sponsors

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;
}

Miracle Sheets Silver-Infused “Self-Cleaning”...

Understanding the Miracle Sheets Silver-Infused Technology The bedding industry is...

FG bans cash tax...

Nigeria Bans Cash Tax Collections and Revenue Roadblocks to...

Iran vs US-Israel war:...

Understanding the Legal Implications of Targeted Strikes on Sovereign...

Sloane Stephens reveals Indian...

Sloane Stephens Unveils Stylish New Look for 'Tennis Paradise'...

Shahed drone meets clone...

The Dawn of the Clone: US LUCAS Drone Debuts...

Gold loans grow 128%,...

Gold Loans Witness Explosive 128% Growth as Outstandings Surpass...

Miracle Sheets Silver-Infused “Self-Cleaning” Claims Examined: 2026 Consumer Report on Miracle Made Cooling Fabric Positioning, Antimicrobial Testing Context, and What Shoppers Should Verify

Understanding the Miracle Sheets Silver-Infused Technology The bedding industry is currently undergoing a technological revolution, with Miracle Made (popularly known for Miracle Sheets) at the...

FG bans cash tax collections, revenue roadblocks

Nigeria Bans Cash Tax Collections and Revenue Roadblocks to Boost Transparency In a landmark move aimed at modernizing the nation’s fiscal operations, the Federal Government...

Iran vs US-Israel war: The legality, or illegality, of killing a foreign leader, explained

Understanding the Legal Implications of Targeted Strikes on Sovereign LeadersThe geopolitical landscape of the Middle East has been thrust into unprecedented turmoil following reports...

Sloane Stephens reveals Indian Wells kit

Sloane Stephens Unveils Stylish New Look for 'Tennis Paradise' at Indian Wells As the tennis world prepares for one of the most prestigious stops on...

Shahed drone meets clone in US war on Iran

The Dawn of the Clone: US LUCAS Drone Debuts in CombatThe landscape of modern warfare shifted significantly on February 28th during a series of...

Gold loans grow 128%, outstandings cross 4 lakh crore

Gold Loans Witness Explosive 128% Growth as Outstandings Surpass ₹4 Lakh Crore India's financial landscape is witnessing a dramatic surge in gold-backed lending, signaling a...

Lottery Unlocked 2026: AI Accuracy Claims Examined, Pricing Verified, and What Consumers Should Confirm Before Buying

Lottery Unlocked 2026: A Deep Dive into AI Accuracy and Pricing ClaimsThe intersection of artificial intelligence and the lottery industry has reached a new...

How to be proactive about cancer prevention

Taking Charge: How to be Proactive About Cancer Prevention Every year, millions of families are affected by cancer, yet a startling statistic offers a glimmer...

Workday’s stock slumps again on weak guidance and AI disruption fears

Workday Shares Plunge as Future Outlook Dims Amid AI Concerns Workday Inc. (WDAY), a long-standing leader in the enterprise cloud applications market for finance and...