結果

問題 No.261 ぐるぐるぐるぐる!あみだくじ!
ユーザー FF256grhyFF256grhy
提出日時 2017-07-20 17:05:16
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 3,194 bytes
コンパイル時間 1,357 ms
コンパイル使用メモリ 160,940 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-17 05:53:53
合計ジャッジ時間 2,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long   signed int LL;
typedef long long unsigned int LU;

#define incID(i, l, r) for(int i = (l)    ; i <  (r); i++)
#define incII(i, l, r) for(int i = (l)    ; i <= (r); i++)
#define decID(i, l, r) for(int i = (r) - 1; i >= (l); i--)
#define decII(i, l, r) for(int i = (r)    ; i >= (l); i--)
#define  inc(i, n) incID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define  dec(i, n) decID(i, 0, n)
#define dec1(i, n) decII(i, 1, n)

#define inII(v, l, r) ((l) <= (v) && (v) <= (r))
#define inID(v, l, r) ((l) <= (v) && (v) <  (r))

#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
#define UB upper_bound
#define LB lower_bound
#define PQ priority_queue

#define  ALL(v)  v.begin(),  v.end()
#define RALL(v) v.rbegin(), v.rend()
#define  FOR(it, v) for(auto it =  v.begin(); it !=  v.end(); ++it)
#define RFOR(it, v) for(auto it = v.rbegin(); it != v.rend(); ++it)

template<typename T> bool   setmin(T & a, T b) { if(b <  a) { a = b; return true; } else { return false; } }
template<typename T> bool   setmax(T & a, T b) { if(b >  a) { a = b; return true; } else { return false; } }
template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } }
template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } }
template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); }
template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; }

// ---- ----

int n, k, q, p[200][100], a[100];

LL ex_gcd(LL a, LL b, LL & x, LL & y) {
	LL d = a;
	if(b != 0) {
		d = ex_gcd(b, a % b, y, x);
		y -= (a / b) * x;
	} else { x = 1; y = 0; }
	return d;
}

LL im(LL x, LL y) { return (x % y + y) % y; }

LL solve() {
	LL r1 = 0, m1 = 1;
	inc(j, n) {
		int b[2], c = 0;
		inc(i, n * 2) {
			if(p[i][j] == a[j]) { b[c++] = i; }
			if(c == 2) { break; }
		}
		if(c != 2) { return -1; }
		
		LL r2 = b[0], m2 = b[1] - b[0], k1, k2, d;
		d = ex_gcd(m1, m2, k1, k2);
		if((r2 - r1) % d != 0) { return -1; }
		if(k1 < 0) { k1 += m2; }
		
		r1 += (r2 - r1) / d * k1 * m1;
		m1 *= m2 / d;
		r1 = im(r1, m1);
	}
	return r1 + 1;
}

int main() {
	/*
	LL r1 = 0, m1 = 1;
	cout << r1 << " " << m1 << endl << endl;
	while(true) {
		LL r2, m2;
		cin >> r2 >> m2;
		cout << "[ " << r2 << ", " << m2 << " ]" << endl;
		LL k1, k2, d;
		d = ex_gcd(m1, m2, k1, k2);
		cout << d << " " << m1 << " " << m2 << " " << k1 << " " << k2 << endl;
		// cout << "m1*k1 + m2*k2 = " << (m1*k1 + m2*k2) << ", d = " << d << endl;
		if((r2 - r1) %d != 0) { cout << "NG" << endl; break; }
		if(k1 < 0) { k1 += m2; }
		
		r1 += (r2 - r1) / d * k1 * m1;
		m1 *= m2 / d;
		r1 = im(r1, m1);
		
		cout << r1 << " " << m1 << endl << endl;
	}
	return 0;
	*/
	
	cin >> n >> k;
	inc(i, n) { p[0][i] = i; }
	inc(i, k) {
		int x, y;
		cin >> x >> y;
		x--; y--;
		swap(p[0][x], p[0][y]);
	}
	
	/*
	cin >> n;
	inc(i, n) { cin >> p[0][i]; p[0][i]--; }
	*/
	
	inc(i, 2 * n - 1) {
		inc(j, n) {
			p[i + 1][j] = p[i][p[0][j]];
		}
	}
	
	cin >> q;
	inc(Q, q) {
		inc(i, n) { cin >> a[i]; a[i]--; }
		cout << solve() << "\n";
	}
	
	return 0;
}
0