# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
96028 | JustInCase | Osmosmjerka (COCI17_osmosmjerka) | C++17 | 4043 ms | 93136 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
const int32_t DELTA_I[] = { -1, -1, 0, 1, 1, 1, 0, -1 };
const int32_t DELTA_J[] = { 0, 1, 1, 1, 0, -1, -1, -1 };
const int32_t MAX_N = 500;
const int32_t MAX_M = 500;
char block[MAX_N + 5][MAX_M + 5];
std::unordered_map< std::string, int32_t > cnt;
int main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(nullptr);
int32_t n, m, k;
std::cin >> n >> m >> k;
for(int32_t i = 0; i < n; i++) {
for(int32_t j = 0; j < m; j++) {
std::cin >> block[i][j];
}
}
int32_t totalCnt = 0;
for(int32_t i = 0; i < n; i++) {
for(int32_t j = 0; j < m; j++) {
int32_t currI = i, currJ = j;
for(int32_t p = 0; p < 8; p++) {
std::string s = "";
do {
s += block[currI][currJ];
currI += DELTA_I[p];
currJ += DELTA_J[p];
if(currI < 0) {
currI += n;
}
if(currJ < 0) {
currJ += m;
}
currI %= n;
currJ %= m;
} while(s.size() < n + k % n);
totalCnt++;
cnt[s]++;
}
}
}
int32_t a = 0, b = totalCnt * totalCnt;
for(auto &x : cnt) {
a += x.second * x.second;
}
int32_t gcd = std::__gcd(a, b);
a /= gcd;
b /= gcd;
std::cout << a << "/" << b << '\n';
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |