제출 #996073

#제출 시각아이디문제언어결과실행 시간메모리
996073coldbr3wXylophone (JOI18_xylophone)C++17
0 / 100
2 ms2392 KiB
#include <bits/stdc++.h> #include "xylophone.h" using namespace std; #define ll long long ll d2[(ll)1e5 + 100], d3[(ll)1e5 + 100], a[(ll)1e5 + 100], pos[(ll)1e5 + 100]; bool check(ll x, ll n){ a[2] = x; for(int i = 3; i <= n;i++){ if(a[i-1] > a[i-2]){ if(d2[i-1] + d2[i] == d3[i]) a[i] = a[i-1] + d2[i]; else a[i] = a[i-1] - d2[i]; } else{ if(d2[i-1] + d2[i] == d3[i]) a[i] = a[i-1] - d2[i]; else a[i] = a[i-1] + d2[i]; } } for(int i = 1; i <= n;i++) { if(a[i] < 0) return 0; pos[a[i]] = i; } ll ok = 1; for(int i = 1; i <= n;i++) ok &= (pos[i] > 0); if(ok){ for(int i = 1; i <= n;i++) answer(i, a[i]); return 1; } else return 0; } void solve(int n){ for(int i = 2; i <= n;i++) d2[i] = query(i - 1, i); for(int i = 3; i <= n;i++) d3[i] = query(i - 2, i); for(int val = 1; val <= n;val++){ for(int i = 1; i <= n;i++) pos[i] = 0; a[1] = val; if(check(a[1] + d2[2], n)) return; if(check(a[1] - d2[2], n)) return; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...