제출 #809219

#제출 시각아이디문제언어결과실행 시간메모리
809219Username4132Rectangles (IOI19_rect)C++14
컴파일 에러
0 ms0 KiB
#include "rect.h" #include<iostream> #include<vector> using namespace std; using ll = long long; using ull = unsigned long long; #define forn(i, n) for(int i=0; i<(int)n; ++i) #define forsn(i, s, n) for(int i=s; i<(int)n; ++i) #define dforn(i, n) for(int i=n-1; i>=0; --i) #define dforsn(i, s, n) for(int i=n-1; i>=s; --i) #define PB push_back const int MAXN = 1010; ull mask[MAXN][MAXN], moved[MAXN]; // column, start row int n, m, arr[MAXN][MAXN], brr[MAXN][MAXN], maa[MAXN][MAXN]; int far[MAXN][MAXN][MAXN]; // row, l, r void calc1(){ dforn(row, n){ forsn(i, 1, m-1){ int mx = -1; forsn(j, i, m-1){ mx = max(mx, arr[row][j]); if(mx<arr[row][i-1] && mx<arr[row][j+1]){ far[row][i][j]=far[row+1][i][j]; } else far[row][i][j]=row; } } } } void calc2(int x){ forn(i, n) forn(j, m) mask[i][j]=0; forn(col, m){ forsn(i, 1, n-1){ forsn(j, i+(x<<6), min(n-1, i + ((x+1)<<6))){ maa[col][i] = max(maa[col][i], brr[col][j]); if(maa[col][i]<brr[col][i-1] && maa[col][i]<brr[col][j+1]){ mask[i][col]|=(1ull<<(j-i-(x<<6))); } } } } } long long count_rectangles(std::vector<std::vector<int> > a) { n=(int)a.size(), m=(int)a.front().size(); //forn(i, 800) full|=(one<<i); moved[0]=0; forn(i, 64) moved[i+1]=(moved[i]<<1)|1; forn(i, n) forn(j, m) brr[j][i]=arr[i][j]=a[i][j]; forn(i, m) forn(j, m) far[n][i][j]=n; calc1(); ll ans=0; forn(x, (n+63)>>6){ calc2(x); forsn(row, 1, n-1){ forsn(i, 1, m-1){ ull bt = ~0ull; forsn(j, i, m-1){ bt&=mask[row][j]; ans+=__builtin_popcountll((bt&moved[min(far[row][i][j]-row-(x<<6), 64)])); } } } } return ans; }

컴파일 시 표준 에러 (stderr) 메시지

/usr/lib/gcc/x86_64-linux-gnu/10/libstdc++.a(vterminate.o): in function `__gnu_cxx::__verbose_terminate_handler()':
(.text._ZN9__gnu_cxx27__verbose_terminate_handlerEv+0x1e): relocation truncated to fit: R_X86_64_PC32 against `.bss._ZZN9__gnu_cxx27__verbose_terminate_handlerEvE11terminating'
(.text._ZN9__gnu_cxx27__verbose_terminate_handlerEv+0x2b): relocation truncated to fit: R_X86_64_PC32 against `.bss._ZZN9__gnu_cxx27__verbose_terminate_handlerEvE11terminating'
/usr/bin/ld: failed to convert GOTPCREL relocation; relink with --no-relax
collect2: error: ld returned 1 exit status