# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
885973 | JakobZorz | Mecho (IOI09_mecho) | C++17 | 908 ms | 3192 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<queue>
#include<stack>
#include<algorithm>
#include<limits.h>
#include<math.h>
#include<map>
#include<set>
#include<unordered_map>
#include<unordered_set>
#include<iomanip>
#include<cstring>
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
using namespace std;
//const int MOD=1e9+7;
//typedef pair<ll,ll>Point;
//typedef pair<ll,ll>Line;
//#define x first
//#define y second
int n,s;
vector<string>m,cm;
vector<pair<int,int>>q1,q2;
vector<pair<int,int>>get_nbs(pair<int,int>pos){
vector<pair<int,int>>res;
if(pos.first!=0)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |