# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
411739 | AKaan37 | 기지국 (IOI20_stations) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "stations.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long lo;
typedef pair< lo,lo > PII;
#define fi first
#define se second
#define mp make_pair
#define endl "\n"
#define pb push_back
#define fio() ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define FOR for(int i=1;i<=n;i++)
#define mid ((start+end)/2)
#define ort ((bas+son)/2)
const lo inf = 1000000000000000000;
const lo KOK = 100000;
const lo LOG = 30;
const lo li = 1005;
const lo mod = 1000000007;
vector<int> vec[li],vv;
int dp[li];
std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> vvv) {
std::vector<int> labels(n);
for (int i = 0; i < n; i++) {
//~ cout<<vv[i]<<endl;
labels[i] = i;
}
return labels;
}
inline int f(int sira,int hedef){
int cevv=0;
if(sira>hedef)return 0;
if(sira==hedef)return 1;
if(~dp[sira])return dp[sira];
cevv=max(cevv,f(sira*2+1,hedef));
cevv=max(cevv,f(sira*2+2,hedef));
return dp[sira]=cevv;
}
int find_next_station(int s, int t, std::vector<int> c) {
//~ memset(dp,-1,sizeof(dp));
//~ cout<<s<<" :: "<<t<<" :: "<<c[0]<<" :: "<<c[1]<<endl;
if(((int)c.size()==1)return c[0];
if((int)c.size()==2){
while(t>c[0] && t>c[1]){
if(t%2)t--;
else t-=2;
t/=2;
}
return t;
}
while(t>c[0] && t>c[1] && t>c[2]){
if(t%2)t--;
else t-=2;
t/=2;
}
return t;
return c[0];
}