/* Beware of your __INT128 */#include<cstdio>#include<iostream>#include<algorithm>#include<vector>usingnamespace std;namespace MySpace {typedeflonglong LL;const __int128 MAXN =1e5+5, MAXS =10+5, MAXE =1e5+5;
__int128 rint(){
__int128 x =0, f =1;char c =getchar();for(; c <'0'|| c >'9'; c =getchar()) f =( c =='-'?-1: f );for(; c >='0'&& c <='9'; c =getchar()) x =( x <<3)+( x <<1)+( c &15);return x * f;}template<typename_T>voidwint( _T x ){if( x <0)putchar('-'), x =~ x +1;if( x >9)wint( x /10);putchar( x %10+'0');}
__int128 calcGCD(const __int128 a,const __int128 b );
__int128 calcLCM(const __int128 a,const __int128 b );structGraphSet{
__int128 to, nx;GraphSet( __int128 T =0, __int128 N =0){ to = T, nx = N;}} as[MAXN *5*4];structFrac{
__int128 one, ano;Frac( __int128 O =0, __int128 A =0){ one = O, ano = A;}} nds[MAXN];
__int128 n, stn, edn, bgn[MAXN], cnte, ind[MAXN], outd[MAXN], sts[MAXN], eds[MAXN], stnd, ednd, vis[MAXN];voidmakeEdge(const __int128 u,const __int128 v ){ as[++ cnte]=GraphSet( v, bgn[u]), bgn[u]= cnte;}
__int128 calcGCD(const __int128 a,const __int128 b ){return! b ? a :calcGCD( b, a % b );}
__int128 calcLCM(const __int128 a,const __int128 b ){return(! a ||! b )?0:( __int128 )a /calcGCD( a, b )* b;}voidgetSimp( Frac& fr ){ __int128 ret =calcGCD( fr.one, fr.ano );if(! ret ) fr =Frac();else fr.one /= ret, fr.ano /= ret;}voiddfs(const __int128 u ){for( __int128 i = bgn[u]; i; i = as[i].nx ){
__int128 v = as[i].to;
Frac ad =Frac( nds[u].one, nds[u].ano * outd[u]);getSimp( ad );
__int128 ret =calcLCM( ad.ano, nds[v].ano );if(! ret ) nds[v]= ad,dfs( v );else{
__int128 ads = ret / ad.ano, us = ret / nds[v].ano;
ad.one *= ads, ad.ano *= ads;
nds[v].one *= us, nds[v].ano *= us;
nds[v].one += ad.one;getSimp( nds[v]);dfs( v );}}if( bgn[u]) nds[u]=Frac();}voidMain(){
n =rint(), stn =rint();for( __int128 i =1; i <= n;++ i ){
__int128 eg =rint();for( __int128 j =1; j <= eg;++ j ){
__int128 to =rint();makeEdge( i, to );
ind[to]++, outd[i]++;}}for( __int128 i =1; i <= n;++ i ){if(! ind[i]) sts[++ stnd]= i;if(! outd[i]) eds[++ ednd]= i;}for( __int128 i =1; i <= stnd;++ i ) nds[sts[i]].one = nds[sts[i]].ano =1;sort( eds +1, eds +1+ ednd );for( __int128 i =1; i <= stnd;++ i )dfs( i );for( __int128 i =1; i <= ednd;++ i )wint( nds[eds[i]].one ),putchar(' '),wint( nds[eds[i]].ano ),putchar('\n');}}intmain(){// freopen ( "water.in", "r", stdin );// freopen ( "water.out", "w", stdout );MySpace::Main();return0;}
#include<cstdio>#include<cstring>namespace mySpace {typedeflonglong LL;constint KEY =1331;constint MAXN =(1<<20)+5;intmul(const LL a,const LL b,constint p ){return a * b % p;}intadd(constint a,constint b,constint p ){return( a + b )< p ?( a + b ):( a + b - p );}intsub(constint a,constint b,constint p ){return( a - b )<0?( a - b + p ):( a - b );}structValue{staticconstint onemod =19260817, anomod =998244353;int p, q;Value():p(0),q(0){}Value(constint x ):p( x ),q( x ){}Value(constint a,constint b ):p( a ),q( b ){}
Value operator*(const Value &other )const{returnValue(mul( p, other.p, onemod ),mul( q, other.q, anomod ));}
Value operator+(const Value &other )const{returnValue(add( p, other.p, onemod ),add( q, other.q, anomod ));}
Value operator-(const Value &other )const{returnValue(sub( p, other.p, onemod ),sub( q, other.q, anomod ));}booloperator==(const Value &other )const{return p == other.p && q == other.q;}booloperator!=(const Value &other )const{return!(Value( p, q )== other );}} pwr[MAXN], has[MAXN];int n, mps[MAXN], buc[MAXN][26], suf[MAXN];char str[MAXN];voidinitial(){scanf("%s", str +1), n =strlen( str +1);for(int i =1; i <= n;++ i ) mps[i]= str[i]-'a';bool tmp[26]={};int cur =0;for(int i =1; i <= n;++ i ){
has[i]= has[i -1]* KEY + mps[i];memcpy( buc[i], buc[i -1],sizeof(int)*26);
tmp[mps[i]]^=1, cur += tmp[mps[i]]?1:-1;for(int j = cur; j <26;++ j ) buc[i][j]++;}memset( tmp,0,sizeof( tmp )), cur =0;for(int i = n; i;-- i ) tmp[mps[i]]^=1, cur += tmp[mps[i]]?1:-1, suf[i]= cur;}
Value calcHS(constint l,constint r ){return has[r]- has[l -1]* pwr[r - l +1];}voidsolve(){initial(); LL ans =0;for(int len =2; len < n;++ len ){
Value tmp =calcHS(1, len );for(int nxt = len; nxt < n; nxt += len ){if(calcHS( nxt - len +1, nxt )!= tmp )break;
ans += buc[len -1][suf[nxt +1]];}}printf("%lld\n", ans );}voidmain(){
pwr[0]=1;for(int i =1; i <= MAXN -5;++ i ) pwr[i]= pwr[i -1]* KEY;int TC;scanf("%d",&TC );while( TC -->0)solve();}}intmain(){// freopen ( "string.in", "r", stdin );// freopen ( "string.out", "w", stdout );
mySpace ::main();return0;}
C++
C 移球游戏
首先肯定这是 n 个栈。先看 n=2 的部分分。
这种情况只有黑白两色。
设 1 柱有 b (总共)个黑棋,有 w 个白棋,把 2 柱上 b 个棋子放到 3 柱上,然后重复:
#include<cstdio>#include<cstring>#include<vector>usingnamespace std;namespace mySpace {constint MAXN =50+5, MAXM =400+5, MAXK =820000+5;intrint(){int x =0, f =1;char c =getchar();for(; c <'0'|| c >'9'; c =getchar()) f = c =='-'?-1: f;for(; c >='0'&& c <='9'; c =getchar()) x =( x <<3)+( x <<1)+( c &15);return x * f;}template<typename_T>voidwint( _T x ){if( x <0)putchar('-'), x =~ x +1;if( x >9)wint( x /10);putchar( x %10^'0');}structStack{private:int stk[MAXM], _top;public:Stack(){memset( stk,0,sizeof( stk )), _top =0;}voidpush(constint val ){ stk[_top ++]= val;}voidpop(){if( _top ) _top --;}intat(constint pos ){return stk[pos];}inttop(){return stk[_top -1];}intsize(){return _top;}boolempty(){return _top <0;}voiddebug(char c =' '){putchar('[');for(int i =0; i < _top;++ i )printf("%d ", stk[i]);printf("]%c", c );}} clr[MAXN];structAnswer{int one, ano;Answer(int O =0,int A =0){ one = O, ano = A;}} ans[MAXK];int n, m, cnt;voidtrans(constint one,constint ano ){
clr[ano].push( clr[one].top());
clr[one].pop();
ans[cnt ++]=Answer( one, ano );}voidsolve(constint l,constint r,const vector<int>& col ){if( r - l ==1)return;int mid =( l + r )>>1;int lst = col[0];
vector<int> onevec, anovec;for(int i =1; i < r - l;++ i ){int one = lst, ano = col[i], cnt =0;for(int j =0; j < m;++ j ){if( clr[one].at( j )< mid )++ cnt;}for(int j =0; j < cnt;++ j )trans( ano, n );for(int j = m -1;~ j;-- j ){if( clr[one].at( j )< mid )trans( one, ano );elsetrans( one, n );}for(int j =0; j < m - cnt;++ j )trans( n, one );for(int j =0; j < cnt;++ j )trans( ano, one );for(int j =0; j < m - cnt;++ j )trans( ano, n );for(int j =0; j < cnt;++ j )trans( one, ano );for(int j = m -1;~ j;-- j ){if( clr[ano].size()< m &&( clr[n].at( j )< mid || clr[one].size()== m ))trans( n, ano );elsetrans( n, one );}bool was =0;for(int j =0; j < m;++ j ){if( clr[ano].at( j )>= mid ) was =1;}if( was ) anovec.push_back( one ), lst = ano;else onevec.push_back( ano ), lst = one;}if( clr[lst].at(0)< mid ) onevec.push_back( lst );else anovec.push_back( lst );solve( l, mid, onevec ),solve( mid, r, anovec );}voidmain(){
n =rint(), m =rint();for(int i =0; i < n;++ i ){for(int j =0; j < m;++ j ) clr[i].push(rint()-1);}
vector<int> col;for(int i =0; i < n;++ i ) col.push_back( i );solve(0, n, col );wint( cnt ),putchar('\n');for(int i =0; i < cnt;++ i ){wint( ans[i].one +1),putchar(' ');wint( ans[i].ano +1),putchar('\n');}}}intmain(){// freopen ( "ball.in", "r", stdin );// freopen ( "ball.out", "w", stdout );
mySpace ::main();return0;}