615B - Longtail Hedgehog - CodeForces Solution


dp graphs *1600

Please click on ads to support us..

C++ Code:

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef long double ld;
#define pb push_back
#define mp make_pair
#define pii pair <int, int>
#define fast_io ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define F first
#define S second
const int N = 1e5 + 5;

vector<int> adj[N];
int d[N];
int dp[N];

int main(){
	fast_io;
	int n, m;
	cin >> n >> m;
	
	int a, b;
	for(int i = 0; i < m; i++)
	{
		cin >> a >> b;
		d[a]++; d[b]++;
		
		if(a < b) swap(a, b);
		
		adj[a].pb(b);
	}
	
	for(int i = 1; i <= n; i++)
	{
		if(adj[i].size() == 0) dp[i] = 1;
		else
		{
			for(int u : adj[i])
			{
				dp[i] = max(dp[i], dp[u] + 1);
			}
		}
	}
	
	ll ans = 0;
	for(int i = 1; i <= n; i++)
	{
		ans = max(ans, 1LL * dp[i] * d[i]);
	}
	
	cout << ans;
	return 0;
}


Comments

Submit
0 Comments
More Questions

1323B - Count Subrectangles
991C - Candies
1463A - Dungeon
1671D - Insert a Progression
1671A - String Building
1671B - Consecutive Points Segment
1671C - Dolce Vita
1669G - Fall Down
4D - Mysterious Present
1316B - String Modification
1204A - BowWow and the Timetable
508B - Anton and currency you all know
1672A - Log Chopping
300A - Array
48D - Permutations
677C - Vanya and Label
1583B - Omkar and Heavenly Tree
1703C - Cypher
1511C - Yet Another Card Deck
1698A - XOR Mixup
1702E - Split Into Two Sets
1703B - ICPC Balloons
1702F - Equate Multisets
1700A - Optimal Path
665C - Simple Strings
1708A - Difference Operations
1703E - Mirror Grid
1042A - Benches
1676B - Equal Candies
1705B - Mark the Dust Sweeper