Submission #1079379


Source Code Expand

#include<stdio.h>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<iostream>
#include<algorithm>
#include<vector>
#include<map>
#include<set>
#include<queue>
#include<bitset>
#include<utility>
#include<functional>
#include<iomanip>
#include<sstream>
#include<ctime>
#include<cassert>
using namespace std;
#define y0 y0z
#define y1 y1z
#define yn ynz
#define j0 j0z
#define j1 j1z
#define jn jnz
#define tm tmz
#define buli(x) (__builtin_popcountll(x))
#define bur0(x) (__builtin_ctzll(x))
#define bul2(x) (63-__builtin_clzll(x))
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define fil(a,b) memset((a),(b),sizeof(a))
#define cl(a) fil(a,0)
#define siz(x) ((int)(x).size())
#define all(x) (x).begin(),(x).end()
#define foreach(it,a) for(__typeof((a).begin()) it=(a).begin();it!=(a).end();it++)
#define rep(i,a,b) for (int i=(a),_ed=(b);i<_ed;i++)
#define per(i,a,b) for (int i=(b)-1,_ed=(a);i>=_ed;i--)
#define forg(i,gu) for (int i=gu;~i;i=e[i].next)
#define pw(x) ((ll(1))<<(x))
#define upmo(a,b) (((a)=((a)+(b))%mo)<0?(a)+=mo:(a))
#define mmo(a,b) (((a)=1ll*(a)*(b)%mo)<0?(a)+=mo:(a))
void getre(){int x=0;printf("%d\n",1/x);}
void gettle(){int res=1;while(1)res<<=1;printf("%d\n",res);}
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef vector<pii> vpii;
template<typename T,typename S>inline bool upmin(T&a,const S&b){return a>b?a=b,1:0;}
template<typename T,typename S>inline bool upmax(T&a,const S&b){return a<b?a=b,1:0;}
template<typename N,typename PN>inline N flo(N a,PN b){return a>=0?a/b:-((-a-1)/b)-1;}
template<typename N,typename PN>inline N cei(N a,PN b){return a>0?(a-1)/b+1:-(-a/b);}
template<typename N>N gcd(N a,N b){return b?gcd(b,a%b):a;}
template<typename N>inline int sgn(N a){return a>0?1:(a<0?-1:0);}
#if ( ( _WIN32 || __WIN32__ ) && __cplusplus < 201103L)
#define lld "%I64d"
#else
#define lld "%lld"
#endif
inline void gn(long long&x){
	int sg=1;char c;while(((c=getchar())<'0'||c>'9')&&c!='-');c=='-'?(sg=-1,x=0):(x=c-'0');
	while((c=getchar())>='0'&&c<='9')x=x*10+c-'0';x*=sg;
}
inline void gn(int&x){long long t;gn(t);x=t;}
inline void gn(unsigned long long&x){long long t;gn(t);x=t;}
inline void gn(double&x){double t;scanf("%lf",&t);x=t;}
inline void gn(long double&x){double t;scanf("%lf",&t);x=t;}
inline void gs(char *s){scanf("%s",s);}
inline void gc(char &c){while((c=getchar())>126 || c<33);}
inline void pc(char c){putchar(c);}
#ifdef JCVB
#define debug(...) fprintf(stderr, __VA_ARGS__)
#else
#define debug(...)
#endif
typedef long long ll;
typedef double db;
inline ll sqr(ll a){return a*a;}
inline db sqrf(db a){return a*a;}
const int inf=0x3f3f3f3f;
const db pi=3.14159265358979323846264338327950288L;
const db eps=1e-6;
//const int mo=0;
//int qp(int a,ll b){int n=1;do{if(b&1)n=1ll*n*a%mo;a=1ll*a*a%mo;}while(b>>=1);return n;}
 
int n;
int fa[433333];
int sz[433333];
int gf(int x){
	return x==fa[x]?x:fa[x]=gf(fa[x]);
}
void un(int x,int y){
	x=gf(x);y=gf(y);
	if(x==y)return;
	sz[y]+=sz[x];
	fa[x]=y;
}
 
int m;
int tmpa[433333],tmpb[433333];
int eee[433333];
int main()
{
#ifdef JCVB
	//freopen("1.in","r",stdin);
	//freopen("1.out","w",stdout);
	int _time_jc=clock();
#endif
	gn(n);
	gn(m);
	rep(i,1,n*4+1)fa[i]=i;
	rep(i,1,n+1)sz[i]=1;
	rep(i,1,n+1)sz[i+3*n]=1;
	rep(_,0,m){
		int a,b;
		gn(a);gn(b);
		tmpa[_]=a;
		tmpb[_]=b;
		un(a,b+2*n);
		un(a+n,b);
		un(a+n*2,b+n);
		un(a+3*n,b+3*n);
	}
	rep(i,0,m)eee[gf(tmpa[i]+3*n)]++;
 
	ll su=0;
	rep(i,1,n+1)if(gf(i+3*n)==i+3*n){
		if(gf(i)==gf(i+n) || gf(i+n)==gf(i+2*n) || gf(i+2*n)==gf(i)){
			su+=1ll*sz[gf(i+3*n)]*sz[gf(i+3*n)];
		}else if(sz[gf(i)] && sz[gf(i+n)] && sz[gf(i+2*n)]){
			su+=1ll*sz[gf(i)]*sz[gf(i+n)]+1ll*sz[gf(i+n)]*sz[gf(i+2*n)]+1ll*sz[gf(i+2*n)]*sz[gf(i)];
		}else{
			su+=eee[gf(i+3*n)];
		}
	}
	cout<<su<<endl;
 
#ifdef JCVB
	debug("time: %d\n",int(clock()-_time_jc));
#endif
	return 0;
}

Submission Info

Submission Time
Task F - Blackout
User jcvb
Language C++14 (GCC 5.4.1)
Score 1700
Code Size 4006 Byte
Status AC
Exec Time 40 ms
Memory 5760 KB

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 3 ms 256 KB
0_01.txt AC 3 ms 256 KB
0_02.txt AC 3 ms 256 KB
1_00.txt AC 3 ms 256 KB
1_01.txt AC 6 ms 2560 KB
1_02.txt AC 20 ms 4224 KB
1_03.txt AC 21 ms 5760 KB
1_04.txt AC 21 ms 5760 KB
1_05.txt AC 22 ms 5760 KB
1_06.txt AC 21 ms 5760 KB
1_07.txt AC 22 ms 5760 KB
1_08.txt AC 20 ms 5760 KB
1_09.txt AC 20 ms 5760 KB
1_10.txt AC 21 ms 5760 KB
1_11.txt AC 21 ms 5760 KB
1_12.txt AC 21 ms 5760 KB
1_13.txt AC 20 ms 4992 KB
1_14.txt AC 18 ms 5760 KB
1_15.txt AC 15 ms 3456 KB
1_16.txt AC 17 ms 4992 KB
1_17.txt AC 12 ms 1024 KB
1_18.txt AC 40 ms 4480 KB
1_19.txt AC 40 ms 4480 KB
1_20.txt AC 39 ms 4480 KB
1_21.txt AC 40 ms 4608 KB
1_22.txt AC 40 ms 4480 KB
1_23.txt AC 40 ms 4480 KB
1_24.txt AC 39 ms 4480 KB
1_25.txt AC 40 ms 4608 KB
1_26.txt AC 40 ms 4480 KB
1_27.txt AC 39 ms 4480 KB
1_28.txt AC 39 ms 4480 KB
1_29.txt AC 40 ms 4480 KB
1_30.txt AC 39 ms 4480 KB
1_31.txt AC 39 ms 4480 KB
1_32.txt AC 40 ms 4480 KB
1_33.txt AC 40 ms 4608 KB
1_34.txt AC 35 ms 3584 KB
1_35.txt AC 29 ms 2304 KB
1_36.txt AC 32 ms 3200 KB
1_37.txt AC 38 ms 4096 KB
1_38.txt AC 26 ms 2048 KB
1_39.txt AC 24 ms 1920 KB
1_40.txt AC 39 ms 4352 KB
1_41.txt AC 39 ms 4224 KB
1_42.txt AC 31 ms 2816 KB
1_43.txt AC 29 ms 2432 KB
1_44.txt AC 35 ms 3712 KB
1_45.txt AC 23 ms 1664 KB
1_46.txt AC 37 ms 3968 KB
1_47.txt AC 38 ms 4224 KB
1_48.txt AC 28 ms 2176 KB
1_49.txt AC 32 ms 2944 KB