답안 #200236

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
200236 2020-02-05T17:31:21 Z MetB Osmosmjerka (COCI17_osmosmjerka) C++14
100 / 160
2626 ms 76584 KB
#include <bits/stdc++.h>
 
#define N 1000001
 
using namespace std;
 
typedef unsigned long long ull;
typedef long long ll;
 
const ll INF = 1e18, MOD = 1e9 + 7, MOD2 = 1e6 + 3;

int n, m, k;
ull p = 37, pm[N];
ull d[500][500][22];
string s[500];
map <ull, int> mp;

ull query (int x, int y, int h, int v, int k) {
	ull sum = 0, mult = 1;

	for (int i = 0; i <= 20; i++) {
		if (k & (1 << i)) {
			sum += d[x][y][i] * mult;
			x = (x + (n + h) * (1 << i)) % n;
			y = (y + (m + v) * (1 << i)) % m;
			mult = mult * pm[i];
		}
	}

	return sum;
}

ll gcd (ll a, ll b) {
	if (!b) return a;
	return gcd (b, a % b);
}

int main () {
	cin >> n >> m >> k;
	k = min (k, n * m);

	for (int i = 0; i < n; i++)
		cin >> s[i];

	pm[0] = p;

	for (int i = 1; i <= 20; i++)
		pm[i] = pm[i-1] * pm[i-1];

	for (int h = -1; h <= 1; h++)
		for (int v = -1; v <= 1; v++) {
			if (!h && !v) continue;

			for (int i = 0; i < n; i++)
				for (int j = 0; j < m; j++) {
					d[i][j][0] = s[i][j] - 'a';
				}

			for (int w = 0; w < 20; w++)
				for (int i = 0; i < n; i++) {
					for (int j = 0; j < m; j++) {
						int nx = (i + (n + h) * (1 << w)) % n;
						int ny = (j + (m + v) * (1 << w)) % m;
						d[i][j][w+1] = d[i][j][w] + d[nx][ny][w] * pm[w];
					}
				}

			for (int i = 0; i < n; i++)
				for (int j = 0; j < m; j++) {
					mp[query (i, j, h, v, k)]++;
				}
		}

	ll ans = 0, all = (n * m * 8) * (n * m * 8);
	for (auto a : mp) {
		ans += a.second * a.second;
	}

	cout << ans / gcd (ans, all) << "/" << all / gcd (ans, all);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 376 KB Output is correct
2 Correct 5 ms 376 KB Output is correct
3 Correct 5 ms 376 KB Output is correct
4 Correct 6 ms 508 KB Output is correct
5 Correct 10 ms 1016 KB Output is correct
6 Incorrect 50 ms 4856 KB Output isn't correct
7 Incorrect 687 ms 30648 KB Output isn't correct
8 Incorrect 2626 ms 76584 KB Output isn't correct