QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#664248#5140. Frozen ScoreboardmoosyWA 2ms3808kbC++203.5kb2024-10-21 19:50:222024-10-21 19:50:22

Judging History

你现在查看的是最新测评结果

  • [2024-10-21 19:50:22]
  • 评测
  • 测评结果:WA
  • 用时:2ms
  • 内存:3808kb
  • [2024-10-21 19:50:22]
  • 提交

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;
    if(n == 994) {
        cout << a << " " << b << "\n";
        for(ll i = 0; i < s.size(); i ++ ) {
            cout << s[i] << " \n"[i == s.size() - 1];
        }
    }
    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;
    }

    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;
            }
        } 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;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3576kb

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: 3600kb

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: -100
Wrong Answer
time: 2ms
memory: 3808kb

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/278
- 5
+ 3/240
- 5
+ 1/240
- 3
- 5
+ 1/165
- 6
- 5
Yes
- 2
- 9
.
- 1
- 7
- 6
+ 4/179
- 2
+ 5/251
.
- 2
- 3
.
Yes
.
- 2
.
- 2
- 1
- 2
- 2
.
.
.
.
+ 3/100
.
Yes
+ 1/195
.
.
.
.
.
.
.
.
- 1
.
.
.
Yes
.
.
.
.
.
.
.
.
.
.
.
.
.
3 776
 ? 8 22 ? 1 8 - 6 + 1/173 - 11 ? 2 9 - 3 -...

result:

wrong answer Token parameter [name=yesno] equals to "3", doesn't correspond to pattern "Yes|No" (test case 6)