# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
96798 | tieunhi | Osmosmjerka (COCI17_osmosmjerka) | C++14 | 4051 ms | 29788 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define FOR(i, u, v) for (int i = u; i <= v; i++)
#define FORD(i, v, u) for (int i = v; i >= u; i--)
#define ll long long
#define pii pair<int, int>
#define PB push_back
#define mp make_pair
#define F first
#define S second
#define N 505
#define BASE 97
#define mod 1000000007
#define mid (r + l)/2
using namespace std;
int n, m, k;
ll res;
char c[N][N];
map<ll, int> ma;
int fx[8] = {-1, -1, 0, 1, 1, 1, 0, -1};
int fy[8] = {0, 1, 1, 1, 0, -1, -1, -1};
int main()
{
ios_base::sync_with_stdio(0); cout.tie(0);
//freopen("INP.TXT", "r", stdin);
//freopen("OUT.TXT", "w", stdout);
cin >> n >> m >> k;
k = min(k, max(n, m));
FOR(i, 1, n)
FOR(j, 1, m) cin >> c[i][j];
FOR(i, 1, n)
FOR(j, 1, m)
FOR(dir, 0, 7)
{
ll val = 0;
int x = i, y = j;
FOR(step, 1, k)
{
val = val*BASE + (c[x][y] - 'a');
x += fx[dir];
y += fy[dir];
if (x > n) x -= n;
if (x < 1) x += n;
if (y > m) y -= m;
if (y < 1) y += m;
}
int tt = ma[val];
res -= 1ll*tt*tt;
tt++;
res += 1ll*tt*tt;
ma[val] = tt;
}
ll MS = 64ll*n*n*m*m;
ll gcd = __gcd(res, MS);
cout <<res/gcd;
cout <<'\\';
cout <<MS/gcd;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |