# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
297070 | Muhammetali | 고대 책들 (IOI17_books) | C++11 | 1 ms | 384 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 "books.h"
#include <bits/stdc++.h>
#define mp make_pair
#define f first
#define s second
#define sz(x) (int)(x).size()
#define rsz resize
#define ins insert
#define ft front()
#define bk back()
#define pf push_front
#define pb push_back
#define eb emplace_back
#define lb lower_bound
#define ub upper_bound
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int,int> pi;
typedef pair<ll,ll> pl;
typedef vector<int> vi;
typedef vector<bool> vb;
typedef vector<ll> vl;
typedef vector<pi> vpi;
typedef vector<pl> vpl;
ll minimum_walk(vector<int> p, int s)
{
if (p[0]==0)
{
if (p[1]==1)
{
if (p[2]==2 && p[3]==3)return 0;
if (p[2]==3 && p[3]==2)return 0;
}
if (p[1]==2)
{
if (p[2]==1 && p[3]==3)return 4;
if (p[2]==3 && p[3]==1)return 6;
}
if (p[1]==3)
{
if (p[2]==1 && p[3]==2)return 6;
if (p[2]==2 && p[3]==1)return 6;
}
}
if (p[0]==1)
{
if (p[1]==0)
{
if (p[2]==2 && p[3]==3)return 2;
if (p[2]==3 && p[3]==2)return 2;
}
if (p[1]==2)
{
if (p[2]==3 && p[3]==0)return 6;
if (p[2]==0 && p[3]==3)return 4;
}
if (p[1]==3)
{
if (p[2]==2 && p[3]==0)return 6;
if (p[2]==0 && p[3]==2)return 6;
}
}
if (p[0]==2)
{
if (p[1]==0)
{
if (p[2]==1 && p[3]==3)return 4;
if (p[2]==3 && p[3]==1)return 6;
}
if (p[1]==1)
{
if (p[2]==3 && p[3]==0)return 6;
if (p[2]==0 && p[3]==3)return 4;
}
if (p[1]==3)
{
if (p[2]==1 && p[3]==0)return 8;
if (p[2]==0 && p[3]==1)return 8;
}
}
if (p[0]==3)
{
if (p[1]==2)
{
if (p[2]==1 && p[3]==0)return 8;
if (p[2]==0 && p[3]==1)return 8;
}
if (p[1]==1)
{
if (p[2]==0 && p[3]==2)return 6;
if (p[2]==2 && p[3]==0)return 6;
}
if (p[1]==0)
{
if (p[2]==1 && p[3]==2)return 6;
if (p[2]==2 && p[3]==1)return 0;
}
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |