# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1044901 | dilanyan | Text editor (CEOI24_editor) | C++17 | 1 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//-------------dilanyan------------\\
#define _CRT_SECURE_NO_WARNINGS
#include<bits/stdc++.h>
#include<stdio.h>
using namespace std;
//------------------Kargpefines--------------------\\
#define ll long long
#define pb push_back
#define all(u) (u).begin(), (u).end()
#define pqueue priority_queue
#define upper upper_bound
#define lower lower_bound
#define umap unordered_map
#define uset unordered_set
void KarginSet(string name = "") {
ios_base::sync_with_stdio(false); cin.tie(NULL);
if (name.size()) {
freopen((name + ".in").c_str(), "r", stdin);
freopen((name + ".out").c_str(), "w", stdout);
}
}
//-------------------KarginConstants------------------\\
const ll mod = 1e9 + 7;
const ll inf = 2e9;
//-------------------KarginCode-----------------------\\
const int N = 500005, M = 1000005;
int l[N];
void KarginSolve() {
int n; cin >> n;
int sl, sc, el, ec;
cin >> sl >> sc >> el >> ec;
for (int i = 1;i <= n;i++) cin >> l[i];
if (n == 1) {
if (sc > ec) {
cout << min(sc - ec, sc - 1 + l[1] - ec + 1) << '\n';
}
else {
cout << min(ec - sc, sc - 1 + l[1] - ec + 1) << '\n';
}
}
else if (n == 2) {
if (sl == el) {
if (sc > ec) {
cout << min(sc - ec, sc - 1 + l[1] - ec + 1) << '\n';
}
else {
cout << min(ec - sc, sc - 1 + l[1] - ec + 1) << '\n';
}
}
else {
if (sc > ec) {
cout << min(sc - ec, min(l[sl] - sc + 1 + ec - 1, 1 + min(l[el], sc) - ec)) << '\n';;
}
else {
cout << min(ec - sc, sc - 1 + l[el] - ec + 1) << '\n';
}
}
}
}
int main() {
KarginSet();
int test = 1;
//cin >> test;
while (test--) {
KarginSolve();
}
return 0;
}
컴파일 시 표준 에러 (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... |