Submission #817907

#TimeUsernameProblemLanguageResultExecution timeMemory
817907FEDIKUSDungeons Game (IOI21_dungeons)C++17
Compilation error
0 ms0 KiB
#include<bits/stdc++.h>
#include "dungeons.h"
 
using namespace std;
 
typedef long long ll;
 
const int logg=25;
const int maxn=400000+10;
 
struct{
	ll gain,max;
	int pos;
} lift[logg][logg][maxn];
 
int n;
vector<int> s,p;
vector<int> w,l;
 
void init(int nn, vector<int> ss, vector<int> pp, vector<int> ww, vector<int> ll) {
	n=nn; s=ss; p=pp; w=ww; l=ll;
	s.resize(n+1); p.resize(n+1); w.resize(n+1), l.resize(n+1);
	s[n]=0; p[n]=0; w[n]=n; l[n]=n;
	for(int bit=0;bit<logg;bit++){
		for(int jump=0;jump<logg;jump++){
			for(int pos=0;pos<=n;pos++){
				if(jump==0){
					if((1<<bit)>=s[pos]) lift[bit][jump][pos]={s[pos],LLONG_MIN,w[pos]};
					else lift[bit][jump][pos]={p[pos],-s[pos],l[pos]};
				}else{
					lift[bit][jump][pos]={lift[bit][jump-1][pos].gain+lift[bit][jump-1][lift[bit][jump-1][pos].pos].gain,
									      max(lift[bit][jump-1][pos].max,lift[bit][jump-1][pos].gain+lift[bit][jump-1][lift[bit][jump-1][pos].pos].max),
										  lift[bit][jump-1][lift[bit][jump-1][pos].pos].pos};
			
				}
			}
		}
	}
	return;
}
 
int get_bit(ll a){
	return min(63-__builtin_clzll(a),logg-1);
}
 
long long simulate(int x, int z) {
	long long res=z;
	while(true){
		if(res==0){
			res=p[x];
			x=l[x];
			continue;
		}
		int bit=get_bit(res);
		for(int jump=logg-1;jump>=0;jump--){
			if(res+lift[bit][jump][x].max<0){
				res+=lift[bit][jump][x].gain;
				x=lift[bit][jump][x].pos;
			}
		}
		if((1LL<<bit)<s[x] && res>=s[x]){
			res+=s[x];
			x=w[x];
		}
		if(x==n) break;
	}
	return res;
}

Compilation message (stderr)

/tmp/ccK378Dk.o: in function `main':
grader.cpp:(.text.startup+0x178): relocation truncated to fit: R_X86_64_PC32 against `.bss'
grader.cpp:(.text.startup+0x17f): relocation truncated to fit: R_X86_64_PC32 against `.bss'
grader.cpp:(.text.startup+0x19d): relocation truncated to fit: R_X86_64_PC32 against `.bss'
grader.cpp:(.text.startup+0x1a4): relocation truncated to fit: R_X86_64_PC32 against `.bss'
grader.cpp:(.text.startup+0x1b0): relocation truncated to fit: R_X86_64_PC32 against `.bss'
grader.cpp:(.text.startup+0x1b7): relocation truncated to fit: R_X86_64_PC32 against `.bss'
grader.cpp:(.text.startup+0x1c3): relocation truncated to fit: R_X86_64_PC32 against `.bss'
grader.cpp:(.text.startup+0x1ca): relocation truncated to fit: R_X86_64_PC32 against `.bss'
grader.cpp:(.text.startup+0x1d6): relocation truncated to fit: R_X86_64_PC32 against `.bss'
grader.cpp:(.text.startup+0x1dd): relocation truncated to fit: R_X86_64_PC32 against `.bss'
grader.cpp:(.text.startup+0x1e9): additional relocation overflows omitted from the output
/usr/bin/ld: failed to convert GOTPCREL relocation; relink with --no-relax
collect2: error: ld returned 1 exit status