結果

問題 No.101 ぐるぐる!あみだくじ!
ユーザー furafura
提出日時 2020-06-08 00:04:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 958 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 203,400 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-06-06 08:45:32
合計ジャッジ時間 12,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 308 ms
5,376 KB
testcase_12 AC 321 ms
5,376 KB
testcase_13 AC 296 ms
5,376 KB
testcase_14 AC 452 ms
5,376 KB
testcase_15 AC 30 ms
5,376 KB
testcase_16 AC 37 ms
5,376 KB
testcase_17 AC 42 ms
5,376 KB
testcase_18 AC 55 ms
5,376 KB
testcase_19 AC 63 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 97 ms
5,376 KB
testcase_23 AC 51 ms
5,376 KB
testcase_24 AC 897 ms
5,376 KB
testcase_25 AC 623 ms
5,376 KB
testcase_26 AC 487 ms
5,376 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

class permutation{
	vector<int> f;
public:
	permutation(){}
	permutation(int n){
		f.resize(n);
		iota(f.begin(),f.end(),0);
	}
	permutation(const vector<int>& p):f(p){}

	permutation operator*(const permutation& p)const{
		int n=f.size();
		permutation res(n);
		rep(i,n) res.f[i]=f[p[i]];
		return res;
	}
	int operator[](int i)const{ return f[i]; }

	int size()const{ return f.size(); }

	void swap(int i,int j){ std::swap(f[i],f[j]); }

	friend permutation inverse(const permutation& p){
		int n=p.f.size();
		permutation res(n);
		rep(i,n) res.f[p.f[i]]=i;
		return res;
	}
};

int main(){
	int n,k; scanf("%d%d",&n,&k);
	permutation p(n);
	rep(i,k){
		int x; scanf("%d%*d",&x); x--;
		p.swap(x,x+1);
	}

	permutation q(n);
	for(int t=1;;t++){
		q=q*p;
		bool ok=true;
		rep(i,n) if(q[i]!=i) ok=false;
		if(ok){
			printf("%d\n",t);
			break;
		}
	}

	return 0;
}
0