程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Codeforces 155 C.Double Profiles

Codeforces 155 C.Double Profiles

編輯:C++入門知識

Codeforces 155 C.Double Profiles



hash+sort

C. Double Profiles time limit per test 3 seconds memory limit per test 256 megabytes input standard input output standard output

You have been offered a job in a company developing a large social network. Your first task is connected with searching profiles that most probably belong to the same user.

The social network contains n registered profiles, numbered from 1 to n. Some pairs there are friends (the "friendship" relationship is mutual, that is, if i is friends with j, then j is also friends with i). Let's say that profiles i and j (i?≠?j) are doubles, if for any profile k(k?≠?i, k?≠?j) one of the two statements is true: either k is friends with i and j, or k isn't friends with either of them. Also, i and jcan be friends or not be friends.

Your task is to count the number of different unordered pairs (i,?j), such that the profiles i and j are doubles. Note that the pairs are unordered, that is, pairs (a,?b) and (b,?a) are considered identical.

Input

The first line contains two space-separated integers n and m (1?≤?n?≤?106, 0?≤?m?≤?106), — the number of profiles and the number of pairs of friends, correspondingly.

Next m lines contains descriptions of pairs of friends in the format "v u", where v and u (1?≤?v,?u?≤?n,?v?≠?u) are numbers of profiles that are friends with each other. It is guaranteed that each unordered pair of friends occurs no more than once and no profile is friends with itself.

Output

Print the single integer — the number of unordered pairs of profiles that are doubles.

Please do not use the %lld specificator to read or write 64-bit integers in С++. It is preferred to use the %I64d specificator.

Sample test(s) input
3 3
1 2
2 3
1 3
output
3
input
3 0
output
3
input
4 1
1 3
output
2
Note

In the first and second sample any two profiles are doubles.

In the third sample the doubles are pairs of profiles (1,?3) and (2,?4).


#include 
#include 
#include 
#include 

using namespace std;

const int maxn=1001000;

typedef unsigned long long int ull;

int n,m;

ull p[maxn],h[maxn],g[maxn];

int main()
{
	scanf("%d%d",&n,&m);
	p[0]=1;
	for(int i=1;i<=n;i++)
		p[i]=p[i-1]*175;
	for(int i=0;i

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved