QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#587770 | #5653. Library game | Nanani | WA | 0ms | 5576kb | C++20 | 3.4kb | 2024-09-24 21:32:51 | 2024-09-24 21:32:52 |
Judging History
answer
//by 72
#include<bits/stdc++.h>
#define F(i, a, b) for(int i = a; i <= b; i ++)
#define Fd(i, a, b) for(int i = a; i >= b; i --)
#define pb push_back
#define pii pair<int, int>
#define fi first
#define se second
#define int long long
using namespace std;
const int mod = 998244353;
const int N = 2e5 + 10;
const int inf = 1e18;
typedef array<int, 3> a3;
typedef long long ll;
int n, m, x[N], vst[N];
void query(int l, int r) {
F(i, l, r) if(vst[i]) {
cout << i << endl;
return;
}
}
void sol() {
cin >> n >> m;
F(i, 1, n) cin >> x[i];
sort(x + 1, x + 1 + n);
reverse(x + 1, x + 1 + n);
int ok = 1;
{
set<pii> s;
s.insert({m, 1});
F(i, 1, n) {
pii now = {-1, -1};
for(auto [len, l] : s) {
if(len >= x[i]) {
now = {l, l + len - 1};
break;
}
}
if(now.fi == -1) {
ok = 0;
break;
}
auto [l, r] = now;
int mid = l + r >> 1;
if(mid - l + 1 > x[i]) mid = l + x[i] - 1;
s.erase(s.find({r - l + 1, l}));
if(l <= mid - 1) s.insert({mid - l, l});
if(mid + 1 <= r) s.insert({r - mid, mid + 1});
}
}
set<pii> s;
s.insert({m, 1});
if(ok) {
cout << "Alessia" << endl;
cout << flush;
F(i, 1, n) {
pii now = {-1, -1};
for(auto [len, l] : s) {
if(len >= x[i]) {
cout << x[i] << " " << l << endl;
cout << flush;
int y; cin >> y;
int r = l + len - 1;
s.erase(s.find({len, l}));
if(l <= y - 1) s.insert({y - l, l});
if(y + 1 <= r) s.insert({r - y, y + 1});
break;
}
}
// assert(ok);
}
} else {
cout << "Bernardo" << endl;
cout << flush;
F(i, 1, n) {
int len, l, r; cin >> len >> l;
r = l + len - 1;
int res = -1;
F(i, l, r) if(vst[i]) {
res = i;
break;
}
if(res != -1) {
cout << res << endl;
cout << flush;
continue;
}
// cout << "GG:" << i << endl;
for(auto [w, ll] : s) {
int rr = ll + w - 1;
// cout << ll << " " << rr << "?" << endl;
if(ll <= l && rr >= l) {
// cout << l << " " << r << " " << ll << " " << rr << endl;
int mid = ll + rr >> 1;
if(mid >= l && mid <= r) res = mid;
else if(r < mid) res = r;
else res = l;
cout << res << endl;
cout << flush;
s.erase(s.find({w, ll}));
if(ll <= res - 1) s.insert({res - ll, ll});
if(res + 1 <= rr) s.insert({rr - res, res + 1});
vst[res] = 1;
break;
}
}
}
}
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(0);
int t = 1;
F(i, 1, t) sol();
return 0;
}
//sldl
/*
5 14
3 7 2 3 10
10 1
7 4
*/
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3600kb
input:
5 14 3 7 2 3 10 7 14 2 4 6
output:
Alessia 10 1 7 8 3 1 3 3 2 5
result:
ok Contestant won the game
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 5576kb
input:
4 10 4 1 6 4 4 8 9
output:
Alessia 6 1 4 5 1 9
result:
wrong answer format Unexpected end of file - int32 expected