QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#664315 | #5140. Frozen Scoreboard | moosy | TL | 95ms | 3884kb | C++20 | 3.5kb | 2024-10-21 20:09:30 | 2024-10-21 20:09:37 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll n, m;
struct Node {
ll x, y;
ll ti, cn, nu;
bool operator<(const Node& other) const {
if (x != other.x) return x < other.x;
return y < other.y;
}
};
void Solve() {
ll a, b; cin >> a >> b;
cin.get();
ll sum = 0, cnt = 0;
vector<string> s(m + 1);
vector<Node> ss;
for(ll i = 1; i <= m; i ++ ) {
getline(cin, s[i]);
}
bool ac = 0;
for(ll i = 1; i <= m; i ++ ) {
if(s[i][0] == '+') {
cnt ++ ;
ll x = 0;
for(ll j = 2; j < s[i].size(); j ++ ) {
if(s[i][j] == '/') {
sum += (x - 1) * 20;
x = 0;
} else {
x = x * 10 + (ll)(s[i][j] - '0');
}
}
sum += x;
} else if(s[i][0] == '?') {
ll x = 0, y = 0;
bool ff = 0;
for(ll j = 2; j < s[i].size(); j ++ ) {
if(!ff) {
if(s[i][j] == ' ') {
ff = 1;
} else {
x = x * 10 + s[i][j] - '0';
}
} else {
y = y * 10 + s[i][j] - '0';
}
}
ss.push_back({x, y, 0, y - x, i});
}
}
if(cnt == a && sum == b) {
ac = 1;
}
sort(ss.begin(), ss.end());
if(!ac && !ss.empty() && a - cnt <= ss.size()) {
do {
ll summ = 0, summ1 = 59 * (a - cnt), summ2 = 0;
for(ll i = 0; i < a - cnt; i ++ ) {
summ += 240 + (ss[i].y - ss[i].x) * 20;
summ2 += 20 * (ss[i].x - 1);
}
if(b - sum >= summ && b - sum <= summ + summ1 + summ2) {
sum += summ;
for(ll i = 0; i < a - cnt; i ++ ) {
ss[i].cn ++ ;
while(b - sum >= 20 && ss[i].cn < ss[i].y) {
ss[i].cn ++ ;
sum += 20;
}
if(b - sum >= 59) {
ss[i].ti = 299;
sum += 59;
} else {
ss[i].ti = 240 + b - sum;
sum = b;
}
}
ac = 1; break;
}
// for(ll i = 0; i < ss.size(); i ++ ) {
// cout << ss[i].x << " \n"[i == ss.size() - 1];
// }
} while(next_permutation(ss.begin(), ss.end()));
}
if(ac) {
cout << "Yes\n";
for(ll i = 1; i <= m; i ++ ) {
if(s[i][0] == '?') {
for(ll j = 0; j < ss.size(); j ++ ) {
if(ss[j].nu == i) {
if(ss[j].ti == 0) {
cout << "- " << ss[j].y << "\n";
} else {
cout << "+ " << ss[j].cn << "/" << ss[j].ti << "\n";
}
break;
}
}
} else {
cout << s[i] << "\n";
}
}
} else {
cout << "No\n";
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> n >> m;
while(n -- ) {
Solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3644kb
input:
1 13 7 951 + 1/6 ? 3 4 + 4/183 - 2 + 3/217 . . . + 2/29 + 1/91 . + 1/22 .
output:
Yes + 1/6 + 3/243 + 4/183 - 2 + 3/217 . . . + 2/29 + 1/91 . + 1/22 .
result:
ok ok (1 test case)
Test #2:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
6 2 1 100 . ? 3 4 2 100 + 1/1 + 1/2 0 0 - 5 - 6 2 480 ? 100 100 ? 100 100 2 480 ? 99 100 ? 100 100 1 2000 ? 100 100 ? 100 100
output:
No No Yes - 5 - 6 Yes + 1/240 + 1/240 No Yes + 89/240 - 100
result:
ok ok (6 test cases)
Test #3:
score: 0
Accepted
time: 0ms
memory: 3884kb
input:
1000 13 6 1519 + 3/183 - 1 + 9/133 ? 2 3 - 5 ? 1 3 - 5 ? 1 1 ? 1 3 - 5 + 1/165 - 6 ? 2 5 2 570 - 2 - 9 . - 1 - 7 - 6 + 4/179 - 2 ? 2 5 . - 2 ? 1 3 . 1 140 . - 2 . - 2 - 1 - 2 - 2 . . . . + 3/100 . 1 195 + 1/195 . . . . . . . . ? 1 1 . . . 0 0 . . . . . . . . . . . . . 3 776 ? 8 22 ? 1 8 - 6 + 1/173 ...
output:
Yes + 3/183 - 1 + 9/133 - 3 - 5 + 3/240 - 5 + 1/278 + 3/240 - 5 + 1/165 - 6 - 5 Yes - 2 - 9 . - 1 - 7 - 6 + 4/179 - 2 - 5 . - 2 + 3/291 . Yes . - 2 . - 2 - 1 - 2 - 2 . . . . + 3/100 . Yes + 1/195 . . . . . . . . - 1 . . . Yes . . . . . . . . . . . . . Yes - 22 - 8 - 6 + 1/173 - 11 - 9 - 3 - 6 + 6/25...
result:
ok ok (1000 test cases)
Test #4:
score: 0
Accepted
time: 2ms
memory: 3536kb
input:
1000 13 0 0 . . . - 1 . - 5 . - 2 - 2 - 1 - 9 - 2 . 0 0 - 7 - 1 ? 2 2 - 2 - 4 . - 1 - 3 - 6 - 1 ? 4 6 . - 1 2 480 + 4/120 - 3 - 5 . - 11 - 1 - 4 - 4 - 3 ? 13 22 . + 9/140 ? 1 5 3 465 . . . + 1/124 . + 1/139 . . + 1/202 . . . . 3 885 - 1 - 4 - 4 + 4/158 . + 9/138 ? 1 8 . ? 1 3 . - 4 ? 2 5 . 6 970 - 4...
output:
Yes . . . - 1 . - 5 . - 2 - 2 - 1 - 9 - 2 . Yes - 7 - 1 - 2 - 2 - 4 . - 1 - 3 - 6 - 1 - 6 . - 1 Yes + 4/120 - 3 - 5 . - 11 - 1 - 4 - 4 - 3 - 22 . + 9/140 - 5 Yes . . . + 1/124 . + 1/139 . . + 1/202 . . . . Yes - 1 - 4 - 4 + 4/158 . + 9/138 - 8 . - 3 . - 4 + 5/289 . No Yes - 2 + 1/205 - 1 + 1/106 - 1...
result:
ok ok (1000 test cases)
Test #5:
score: 0
Accepted
time: 2ms
memory: 3852kb
input:
1000 13 5 1620 - 2 - 1 ? 2 4 ? 4 5 + 6/213 . + 6/231 ? 2 4 + 7/215 . . ? 2 6 ? 1 1 2 975 ? 1 4 - 2 - 6 . ? 2 12 ? 1 4 ? 2 7 - 3 - 1 ? 2 19 ? 2 2 - 2 ? 1 1 0 0 . . - 3 - 1 . - 1 - 4 . - 1 . - 1 - 1 - 3 4 1342 . - 6 - 2 - 4 - 8 - 6 + 14/95 ? 2 2 ? 1 9 ? 6 10 - 7 + 4/205 ? 3 5 5 1019 . . . + 2/116 . - ...
output:
Yes - 2 - 1 + 4/282 - 5 + 6/213 . + 6/231 - 4 + 7/215 . . - 6 + 1/299 Yes - 4 - 2 - 6 . - 12 + 4/299 - 7 - 3 - 1 + 19/256 - 2 - 2 - 1 Yes . . - 3 - 1 . - 1 - 4 . - 1 . - 1 - 1 - 3 Yes . - 6 - 2 - 4 - 8 - 6 + 14/95 + 2/243 + 9/299 - 10 - 7 + 4/205 - 5 Yes . . . + 2/116 . - 1 + 3/127 . . + 1/275 + 4/1...
result:
ok ok (1000 test cases)
Test #6:
score: 0
Accepted
time: 95ms
memory: 3848kb
input:
1000 13 0 0 . . . . - 1 . ? 1 4 . . - 1 . . - 1 5 1008 - 2 - 2 . + 4/157 . . + 2/145 - 3 + 2/125 . + 1/233 + 4/188 - 5 0 0 . . ? 1 1 . . . . . . . . . . 6 1359 + 1/100 + 2/144 - 4 + 2/238 - 2 - 2 + 4/107 + 4/214 . ? 3 6 + 9/236 - 4 - 6 8 3064 + 20/155 . - 17 - 11 ? 9 10 ? 11 30 - 1 ? 6 13 + 6/113 + ...
output:
Yes . . . . - 1 . - 4 . . - 1 . . - 1 Yes - 2 - 2 . + 4/157 . . + 2/145 - 3 + 2/125 . + 1/233 + 4/188 - 5 Yes . . - 1 . . . . . . . . . . Yes + 1/100 + 2/144 - 4 + 2/238 - 2 - 2 + 4/107 + 4/214 . - 6 + 9/236 - 4 - 6 Yes + 20/155 . - 17 - 11 + 6/244 - 30 - 1 + 13/299 + 6/113 + 2/221 + 4/299 + 12/151 ...
result:
ok ok (1000 test cases)
Test #7:
score: 0
Accepted
time: 2ms
memory: 3596kb
input:
1000 13 2 501 ? 1 8 - 1 + 4/208 - 5 - 1 - 19 + 4/173 - 11 . - 11 ? 1 1 . - 10 4 599 - 2 . - 12 . + 1/142 + 3/85 - 3 ? 4 8 + 4/80 . - 1 . + 3/152 13 3774 ? 2 7 ? 2 3 + 12/162 + 2/112 + 4/174 + 12/156 + 2/163 + 2/168 + 12/186 + 6/191 + 8/43 ? 1 2 ? 1 16 8 2408 ? 2 5 ? 1 1 ? 6 14 + 4/204 . + 2/97 + 2/2...
output:
Yes - 8 - 1 + 4/208 - 5 - 1 - 19 + 4/173 - 11 . - 11 - 1 . - 10 Yes - 2 . - 12 . + 1/142 + 3/85 - 3 - 8 + 4/80 . - 1 . + 3/152 No Yes + 5/299 + 1/299 + 11/244 + 4/204 . + 2/97 + 2/222 + 10/230 . - 7 . - 1 + 2/233 Yes . - 8 - 4 - 4 - 2 . - 7 . . - 10 - 5 - 3 - 4 Yes - 5 + 1/173 . - 2 - 1 + 5/238 - 2 ...
result:
ok ok (1000 test cases)
Test #8:
score: -100
Time Limit Exceeded
input:
1000 13 1 19917 ? 30 39 ? 79 81 ? 32 33 ? 35 95 ? 14 84 ? 6 17 ? 11 31 ? 5 8 ? 34 89 ? 38 50 ? 10 10 ? 22 54 ? 5 92 1 16730 ? 56 59 ? 40 55 ? 42 54 ? 5 9 ? 65 79 ? 7 11 ? 25 34 ? 2 10 ? 29 51 ? 2 7 ? 39 48 ? 4 67 ? 24 36 8 17772 ? 17 35 ? 36 46 ? 42 63 ? 2 11 ? 59 84 ? 4 36 ? 9 21 ? 76 86 ? 48 89 ? ...