# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
499625 | rampu | Mecho (IOI09_mecho) | C++14 | 242 ms | 6128 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <vector>
#include <climits>
#include <queue>
#define F first
#define S second
using namespace std;
using pii = pair <int, int>;
const int N = 801;
const int dx[] = { 0, -1, 1, 0 };
const int dy[] = { 1, 0, 0, -1 };
int n, s;
char c[N][N];
int tAcc[N][N];
vector <pii> hive;
pii honeypot, home;
inline bool Unreachable(const int &x, const int &y) {
return x < 1 || x > n || y < 1 || y > n || c[x][y] == 'D' || c[x][y] == 'T';
}
inline bool UnrB(const int &x, const int &y) {
return x < 1 || x > n || y < 1 || y > n || c[x][y] == 'T';
}
void CalcTAcc() {
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |