QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#766795#5301. Modulo Ruins the LegendRezhou#TL 16ms4760kbC++231.4kb2024-11-20 18:38:552024-11-20 18:38:56

Judging History

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

  • [2024-11-20 18:38:56]
  • 评测
  • 测评结果:TL
  • 用时:16ms
  • 内存:4760kb
  • [2024-11-20 18:38:55]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long

using namespace std;
typedef pair<int, int> pii;
const int N = 2e5 + 10;

void solve() {
    int n, mod;
    cin >> n >> mod;

    int sum = 0;
    for (int i = 1; i <= n; i++) {
        int x;
        cin >> x;
        sum += x;
    }
    sum %= mod;

    int mn = sum;
    pii ans = { 0,0 };
    int k = n * (n + 1) / 2;

    map<int, int> mp;
    for (int s = 0; s <= min(n + 1, mod - 1); s++) {
        if (mn == 0) break;
        int now = sum + s * n;
        now %= mod;
        int all = 0;

        while (!mp[now] && all < mod - 1) {
            if (all > 100) break;
            if (mn == 0) break;
            mp[now] = 1;
            int l = 0, r = mod - all - 1;
            while (l < r) {
                int mid = (l + r) >> 1;
                if (now + mid * k < mod) l = mid + 1;
                else r = mid;
            }
            now += l * k;
            now %= mod;
            all += l;
            if (now < mn) {
                ans = { s,all };
                mn = now;
            }
        }

    }

    cout << mn << "\n";
    cout << ans.first << " " << ans.second;
}
signed main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int _ = 1;
    //cin >> _;
    while (_--) {
        solve();
    }
    return 0;
}   

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

6 24
1 1 4 5 1 4

output:

1
0 5

result:

ok ok

Test #2:

score: 0
Accepted
time: 0ms
memory: 3508kb

input:

7 29
1 9 1 9 8 1 0

output:

0
0 0

result:

ok ok

Test #3:

score: 0
Accepted
time: 0ms
memory: 3512kb

input:

1 1
0

output:

0
0 0

result:

ok ok

Test #4:

score: 0
Accepted
time: 0ms
memory: 3704kb

input:

1 1000000000
963837005

output:

0
0 36162995

result:

ok ok

Test #5:

score: 0
Accepted
time: 0ms
memory: 3512kb

input:

2 1
0 0

output:

0
0 0

result:

ok ok

Test #6:

score: 0
Accepted
time: 0ms
memory: 3508kb

input:

2 1000000000
948507269 461613424

output:

0
1 196626435

result:

ok ok

Test #7:

score: 0
Accepted
time: 0ms
memory: 3500kb

input:

100000 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...

output:

0
0 0

result:

ok ok

Test #8:

score: 0
Accepted
time: 16ms
memory: 4760kb

input:

100000 1000000000
253614966 278270960 980235895 498158918 928430170 216003119 852570558 948400590 239257296 897053667 294741176 38297441 382677590 406314557 609468973 854148232 314532767 738191551 158215002 5865825 920471826 380037058 356271728 749175327 28319049 208101105 953758995 896570758 521930...

output:

46613
4590 101

result:

ok ok

Test #9:

score: -100
Time Limit Exceeded

input:

100000 998244353
561002596 498658036 721339539 63377827 532179242 934651519 234198881 490149304 2056307 499913682 427679408 694677560 516580968 300129454 816286800 688594301 183049581 456627420 495848352 273497462 953217060 796225499 207179832 728054671 409492082 25003432 810431468 206421553 5569626...

output:


result: