QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#587988 | #5653. Library game | Nanani | WA | 1ms | 5460kb | C++20 | 2.2kb | 2024-09-24 23:18:08 | 2024-09-24 23:18:09 |
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 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;
F(i, 1, n) {
if((m - 1) / i + 1 < x[i]) ok = i;
}
set<pii> s;
s.insert({m, 1});
if(ok == -1) {
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;
vector<int> qaq;
for(int i = x[ok]; i <= m; i += x[ok]) qaq.push_back(i);
// cout << x[ok] << "!!\n";
// for(auto x : qaq) cout << x << " "; cout << endl;
F(i, 1, n) {
int len, l; cin >> len >> l;
int r = l + len - 1;
bool qsy = false;
F(j, l, r) {
if(vst[j]) {
cout << j << endl;
qsy = 1;
break;
}
}
if(qsy) continue;
for(auto x : qaq) if(x >= l && x <= r) {
cout << x << endl;
qsy = true;
break;
}
assert(qsy);
}
}
}
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: 1ms
memory: 3848kb
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: 5460kb
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