結果

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

テストケース

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

ソースコード

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 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; }
		}
		assert(c != 1);
		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; }
		assert(inID(k1, 0, m2));
		
		k1 *= (r2 - r1);
		r1 += k1 * m1;
		m1 *= m2 / d;
		r1 %= m1;
	}
	return r1 + 1;
}

int main() {
	
	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