QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#505130#9141. Array Spreaducup-team2307ML 1ms3560kbC++172.2kb2024-08-04 20:24:072024-08-04 20:24:08

Judging History

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

  • [2024-09-18 18:58:44]
  • hack成功,自动添加数据
  • (/hack/840)
  • [2024-09-18 18:53:02]
  • hack成功,自动添加数据
  • (/hack/839)
  • [2024-08-04 20:24:08]
  • 评测
  • 测评结果:ML
  • 用时:1ms
  • 内存:3560kb
  • [2024-08-04 20:24:07]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

#define rep(i, from, to) for (int i = from; i < (to); ++i)
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
const int mod = 998244353;
int inv(int a) {
    return a < 2 ? a :
        mod - (mod / a) * 1ll * inv(mod % a) % mod;
}
bool chmin(ll &x, ll y) {
    if(x > y) {
        x = y;
        return true;
    }
    return false;
}
int main() {
    ios_base::sync_with_stdio(0);
    cout.tie(0);
    int T;
    cin >> T;
    while(T--) {
        int n, m;
        cin >> n >> m;
        vector<array<int, 2>> segs(m);
        for(auto &[l, r] : segs) cin >> l >> r, l--;

        vector<array<int, 2>> frac;
        for(int i = 1; i <= m; i++) {
            for(int j = 1; j <= m; j++) {
                frac.push_back({i, j});
            }
        }
        sort(all(frac), [&](auto x, auto y) {
            return x[0] * y[1] < y[0] * x[1];
        });
        auto check = [&](int id) -> bool {
            if(id >= frac.size()) return 0;
            ll high = frac[id][0], low = frac[id][1];
            /*
            p[l] <= p[r] - low
            p[r] <= p[l] + high
            p[l] <= p[l + 1]
            */
            vector<ll> dist(n + 1, 0);
            for(int iter = 0; iter <= n; iter++) {
                bool upd = false;
                for(int i = n + 1; i-- > 1;)
                    upd |= chmin(dist[i - 1], dist[i]);
                for(auto [l, r] : segs) {
                    upd |= chmin(dist[l], dist[r] - low);
                    upd |= chmin(dist[r], dist[l] + high);
                }
                if(iter == n && upd) {
                    // cout << high << " " << low << " false" << endl;
                    return false;
                }
            }
                    // cout << high << " " << low << " true" << endl;
            return 1;
        };
        int ans = -1;
        for(int z = 1<<25; z>>=1;) {
            ans += z*(ans + z < frac.size() && !check(ans+z));
        }
        ans++;
        // cout << frac[ans][0] << " " << frac[ans][1] << endl;
        cout << (frac[ans][0] * 1ll * inv(frac[ans][1])) % mod << '\n';
    }
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3560kb

input:

3
3 3
1 3
2 3
1 2
12 6
2 3
5 7
1 9
4 8
1 2
7 11
4 5
3 4
2 3
1 2
4 4
1 1

output:

1
2
499122178

result:

ok 3 number(s): "1 2 499122178"

Test #2:

score: -100
Memory Limit Exceeded

input:

2000
1000000000 1
259923446 367011266
1000000000 1
882434225 971573327
1000000000 1
41585677 470369580
1000000000 1
371902212 947250194
1000000000 1
787209148 924205796
1000000000 1
259074809 960876164
1000000000 1
148079314 188254573
1000000000 1
940091047 948318624
1000000000 1
40636497 743979446
...

output:


result: