結果
問題 | No.261 ぐるぐるぐるぐる!あみだくじ! |
ユーザー | Lepton_s |
提出日時 | 2015-08-01 00:02:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,842 bytes |
コンパイル時間 | 628 ms |
コンパイル使用メモリ | 86,060 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 00:06:53 |
合計ジャッジ時間 | 5,479 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
ソースコード
#include <algorithm> #include <climits> #include <cmath> #include <cstdio> #include <cstdlib> #include <ctime> #include <iostream> #include <sstream> #include <functional> #include <map> #include <string> #include <cstring> #include <vector> #include <queue> #include <stack> #include <deque> #include <set> #include <list> #include <numeric> using namespace std; const double PI = 3.14159265358979323846; const double EPS = 1e-12; const int INF = 1<<25; typedef pair<int,int> P; typedef long long ll; typedef unsigned long long ull; #define T 10000000 #define R 33000 #define N 200 int n, m, r[N], s[N], s2[N], s3[N], t[R][N], a[N], tmp[N]; void ap(int *a, int *b){ memcpy(tmp, a, sizeof(tmp)); for(int i = 0; i < n; i++) a[i] = tmp[b[i]]; } int lcm(int a, int b){ return a/__gcd(a, b)*b; } int main(){ srand(time(NULL)); int rnd = rand()%n; cin>>n>>m; for(int i = 0; i < n; i++) r[i] = i; memcpy(s, r, sizeof(s)); memcpy(s2, r, sizeof(s)); memcpy(s3, r, sizeof(s)); for(int i = 0; i < m; i++){ int x, y; cin>>x>>y; swap(s[x-1], s[x]); } ll E = 1; for(int i = 0; i < n; i++){ int cnt = 1, p = s[i]; while(p!=i){ p = s[p]; cnt++; } E = lcm(E, cnt); } ll F = sqrt(E)+1; for(int i = 0; i < F; i++){ ap(s2, s); //for(int i = 0; i < n; i++) cout<<s2[i]<<" "; //cout<<endl; } for(int i = 0; i < F; i++){ memcpy(t[i], s3, sizeof(s3)); ap(s3, s2); } // for(int i = 0; i < n; i++) cout<<t[1][i]<<" "; //cout<<endl; int Q; cin>>Q; while(Q--){ for(int i = 0; i < n; i++){ cin>>a[i]; a[i]--; } int res = -1; for(int i = 0; i < F; i++){ for(int j = 0; j < F; j++){ if(a[rnd]==t[j][rnd]&&!memcmp(a, t[j], sizeof(a))){ //cerr<<i<<" "<<j<<" "<<F<<endl; res = (j*F-i+E-1)%E+1; i = j = F; break; } } ap(a, s); } cout<<res<<endl; } return 0; }