이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define pb push_back
#define en cout << '\n'
#define vi vector<int>
#define pii pair<int, int>
#define ff first
#define ss second
#define all(x) x.begin(),x.end()
const int N = 1e5+100;
int n, m, a[N], b[N];
void solve(){
cin >> n >> m;
vector<pii> v;
for(int i = 1; i <= n; ++i){
cin >> a[i];
v.pb({a[i], 1});
}
for(int i = 1; i <= m; ++i){
cin >> b[i];
v.pb({b[i], 0});
}
sort(all(v));
string soll;
int l = 0, r = 1e9, ans = -1;
while(l <= r){
int k = l+r>>1;
string sol = "";
bool ok = 1;
int last = -1e9, last_not_covered = 2e9;
for(int i = 0; i < n+m; ++i){
if(v[i].ss == 0){
if(last >= v[i].ff){
continue;
}
last_not_covered = min(last_not_covered, v[i].ff);
}else{
if(last_not_covered != 2e9){
if(v[i].ff - last_not_covered > k){
ok = 0;
break;
}
last_not_covered = 2e9;
sol += 'L';
}else{
last = v[i].ff + k;
sol += 'R';
}
}
}
if(last_not_covered != 2e9) ok = 0;
if(ok){
ans = k;
soll = sol;
r = k - 1;
}else{
l = k + 1;
}
}
cout << ans << '\n';
if(ans != -1){
cout << soll;
}
}
int main(){
cin.tie(0); ios::sync_with_stdio(0);
solve();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp: In function 'void solve()':
Main.cpp:30:12: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
30 | int k = l+r>>1;
| ~^~
# | 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... |