# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
128999 | gs14004 | Fibonacci representations (CEOI18_fib) | C++17 | 4088 ms | 2204 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using lint = long long;
using pi = pair<int, int>;
const int mod = 1e9 + 7;
const int MAXN = 200005;
set<pi> s;
int n, a[MAXN];
lint dp[MAXN][2];
int query(){
n = 0;
for(auto &i : s){
assert(i.first % 2 == i.second % 2);
for(int j=i.first; j<=i.second; j+=2){
a[++n] = j;
}
}
dp[0][0] = 1;
for(int i=1; i<=n; i++){
int d = a[i] - a[i-1];
// printf("G = %d. ", d);
dp[i][0] = (dp[i-1][1] * (d % 2 == 0) + dp[i-1][0] * ((d + 1) / 2)) % mod;
dp[i][1] = (dp[i-1][1] * (d % 2 == 0) + dp[i-1][0] * ((d - 1) / 2)) % mod;
// printf("(%lld, %lld)\n", dp[i][0], dp[i][1]);
}
return dp[n][0];
}
int cnt;
void add(int x){
if(x == 0) x = 1;
if(x == -1) return;
auto it = s.upper_bound(pi(x + 1, -1));
if(it != s.begin() && prev(it)->second >= x){
auto intv = *--it;
s.erase(it);
if(intv.first % 2 == x % 2){
add(intv.second + 1);
intv.second = x - 2;
if(intv.first <= intv.second){
auto l = s.lower_bound(pi(intv.second + 3, -1));
auto nxt = pi(intv.first + 1, intv.second + 1);
if(l != s.end() && l->first == intv.second + 3){
nxt.second = l->second;
s.erase(l);
}
s.insert(nxt);
}
add(intv.first - 2);
}
else{
s.emplace(intv.first, x - 1);
add(intv.second + 1);
}
}
else{
auto nxt = it;
pi ins(x, x);
if(nxt != s.begin()){
nxt = prev(nxt);
if(nxt->second == x - 1){
auto prv = *nxt;
s.erase(nxt);
if(prv.first != prv.second){
prv.second -= 2;
s.insert(prv);
}
add(x + 1);
return;
}
if(nxt->second == x - 2){
auto l = s.lower_bound(pi(x + 1, -1));
if(l != s.end() && l->first == x + 1){
int pos = l->second + 1;
s.erase(l);
add(pos);
}
else if(l != s.end() && l->first == x + 2){
auto it = *nxt;
it.second = l->second;
s.erase(l);
s.erase(nxt);
s.insert(it);
}
else{
auto it = *nxt;
it.second += 2;
s.erase(nxt);
s.insert(it);
}
return;
}
}
auto l = s.lower_bound(pi(x + 1, -1));
if(l->first == x + 1){
int pos = l->second + 1;
s.erase(l);
add(pos);
}
else if(l->first == x + 2){
auto nxt = *l; nxt.first -= 2;
s.erase(l); s.insert(nxt);
}
else{
s.emplace(x, x);
}
}
}
int main(){
int n, x;
scanf("%d",&n);
for(int i=0; i<n; i++){
scanf("%d",&x);
add(x);
printf("%d\n", query());
}
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |