結果
問題 | No.101 ぐるぐる!あみだくじ! |
ユーザー | fura |
提出日時 | 2020-06-08 00:04:22 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 958 bytes |
コンパイル時間 | 2,358 ms |
コンパイル使用メモリ | 203,964 KB |
実行使用メモリ | 10,148 KB |
最終ジャッジ日時 | 2024-12-23 22:45:00 |
合計ジャッジ時間 | 56,984 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,576 KB |
testcase_01 | AC | 2 ms
10,148 KB |
testcase_02 | AC | 2 ms
8,576 KB |
testcase_03 | AC | 2 ms
8,704 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 369 ms
5,248 KB |
testcase_12 | AC | 377 ms
5,248 KB |
testcase_13 | AC | 332 ms
5,248 KB |
testcase_14 | AC | 488 ms
5,248 KB |
testcase_15 | AC | 32 ms
5,248 KB |
testcase_16 | AC | 39 ms
5,248 KB |
testcase_17 | AC | 45 ms
5,248 KB |
testcase_18 | AC | 58 ms
5,248 KB |
testcase_19 | AC | 67 ms
5,248 KB |
testcase_20 | AC | 4 ms
5,248 KB |
testcase_21 | AC | 3 ms
5,248 KB |
testcase_22 | AC | 98 ms
5,248 KB |
testcase_23 | AC | 52 ms
5,248 KB |
testcase_24 | AC | 947 ms
5,248 KB |
testcase_25 | AC | 653 ms
5,248 KB |
testcase_26 | AC | 471 ms
5,248 KB |
testcase_27 | TLE | - |
testcase_28 | AC | 4,409 ms
6,816 KB |
testcase_29 | AC | 4,282 ms
6,820 KB |
testcase_30 | AC | 3,418 ms
6,816 KB |
testcase_31 | AC | 3,331 ms
6,820 KB |
testcase_32 | AC | 3,303 ms
6,820 KB |
testcase_33 | TLE | - |
testcase_34 | AC | 2 ms
6,820 KB |
testcase_35 | AC | 1 ms
6,820 KB |
testcase_36 | AC | 2 ms
6,816 KB |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
ソースコード
#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; }