QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#851334#9429. SubarrayDeltaxAC ✓313ms76148kbC++145.3kb2025-01-10 17:48:552025-01-10 17:48:55

Judging History

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

  • [2025-01-10 17:48:55]
  • 评测
  • 测评结果:AC
  • 用时:313ms
  • 内存:76148kb
  • [2025-01-10 17:48:55]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
template <class T>
inline void read(T &x) {
	x = 0; int f = 1;
	char c = getchar();
	while (!isdigit(c)) {if (c == '-') f = -f; c = getchar();}
	while (isdigit(c)) x = (x << 1) + (x << 3) + (c & 15), c = getchar();
	x = x * f;
}

const int MAXN = 4e5;
int a[MAXN + 10], b[MAXN + 10];

struct SEG {
  int seg[MAXN << 2];
  SEG() {}
  void build(int o, int l, int r) {
    if (l == r) {
        seg[o] = a[l];
        return;
    }
    int mid = l + r >> 1;
    build(o << 1, l, mid), build(o << 1 | 1, mid + 1, r);
    seg[o] = std::max(seg[o << 1], seg[o << 1 | 1]);
  }

  int findL(int o, int l, int r, int x, int y, int v) {
    if (seg[o] <= v) return -1;
    if (l == r) return l;
    int mid = l + r >> 1, res = -1;
    if (y > mid) res = findL(o << 1 | 1, mid + 1, r, x, y, v);
    if (x <= mid && res == -1) res = findL(o << 1, l, mid, x, y, v);
    return res;
  }

  int findR(int o, int l, int r, int x, int y, int v) {
    if (seg[o] <= v) return -1;
    if (l == r) return l;
    int mid = l + r >> 1, res = -1;
    if (x <= mid) res = findR(o << 1, l, mid, x, y, v);
    if (y > mid && res == -1) res = findR(o << 1 | 1, mid + 1, r, x, y, v);
    return res;
  }
}seg;

const int Mod = 998244353;
namespace Poly {
    typedef vector<int> poly; 
	const int MAXN = 1 << 21, G = 3;
	inline int chkadd(int x) {return x >= Mod? x - Mod : x;}
	inline int chksub(int x) {return x < 0? x + Mod : x;}
	inline int fastpow(int x, int p) {
		int ans = 1;
		while (p) {
			if (p & 1) ans = 1ll * ans * x % Mod;
			x = 1ll * x * x % Mod;
			p >>= 1;
		}
		return ans;
	}

	int inv[MAXN + 10], w1[MAXN + 10], w2[MAXN + 10], rev[MAXN + 10], revn;
	inline int calc(int x) {return x != 1? 1ll << __lg(x - 1) + 1 : 0;}
	void init(int n = MAXN) {
		w1[0] = w2[0] = 1; rev[1] = n >> 1;
		w1[1] = fastpow(G, (Mod - 1) / n); w2[n - 1] = w1[1]; revn = n; inv[1] = 1;
		for (int i = 2; i <= n; ++i) inv[i] = 1ll * (Mod - Mod / i) * inv[Mod % i] % Mod;
		//inv[i] = fastpow(i, Mod - 2);
		for (int i = 2; i < n; ++i) {
			w1[i] = 1ll * w1[i - 1] * w1[1] % Mod;
			w2[n - i] = w1[i];
			rev[i] = (rev[i >> 1] >> 1) | ((i & 1)? n >> 1 : 0);
		}
	}

	poly NTT(poly f, int n, int op) {
		int kk = __lg(revn / n);
		for (int i = 0; i < n; ++i)
			if (i > (rev[i] >> kk)) swap(f[i], f[rev[i] >> kk]);
		
		int *ome = op? w2 : w1, res = revn >> 1;
		for (int p = 2; p <= n; p <<= 1, res >>= 1) {
			int len = p >> 1;
			for (int k = 0; k < n; k += p) {
				int *o = ome;
				for (int l = k; l < k + len; ++l) {
					int tmp = 1ll * f[l + len] * *o % Mod;
					f[l + len] = chksub(f[l] - tmp);
					f[l] = chkadd(f[l] + tmp);
					o += res;
				}
			}
		}

		if (op) {
			for (int i = 0; i < n; ++i)
				f[i] = 1ll * f[i] * inv[n] % Mod;
		}
		return f;
	}

	poly MUL(poly f, int n, poly g, int m, int res) {
		f.resize(n); g.resize(m); if (!res) res = n + m - 1;
		int N = calc(n + m);  f.resize(N); g.resize(N);
		f = NTT(f, N, 0); g = NTT(g, N, 0);
		for (int i = 0; i < N; ++i) f[i] = 1ll * f[i] * g[i] % Mod;
		f = NTT(f, N, 1); f.resize(res);
		return f;
	}
}

LL ans[MAXN + 10];
vector<int> pos[MAXN + 10];

void solve(vector<int> &c) {
    vector<int> f, g;
    for (int i = 1; i < c.size(); ++i) f.push_back(c[i] - c[i - 1]);
    g = f;
    reverse(g.begin(), g.end());
    //reverse(d.begin(), d.end());
    int len = f.size();
    vector <int> res = Poly::MUL(f, f.size(), g, g.size(), f.size() + 1);
    for (int j = 1; j < len; ++j)
        ans[j] = (ans[j] + res[len - 1 - j]) % Mod;
}
int main() {
    Poly::init();
    int T; read(T);
    while (T--) {
        int n; read(n);
        for (int i = 1; i <= n; ++i) {
            read(a[i]);
            b[i] = a[i];
        }
        seg.build(1, 1, n);
        sort(b + 1, b + n + 1);
        int m = unique(b + 1, b + n + 1) - b - 1;
        //for (int i = 1; i <= m; ++i) pos[i].push_back(0);
        for (int i = 1; i <= n; ++i) {
            int p = lower_bound(b + 1, b + m + 1, a[i]) - b;
            pos[p].push_back(i);
        }
        for (int i = m; i >= 1; --i) {
            vector<int> c;
            int tmp = seg.findL(1, 1, n, 1, pos[i][0], b[i]);
            if (tmp == -1) tmp = 0;
            c.push_back(tmp); //d.push_back(0);
            for (int j = 0; j < pos[i].size(); ++j) {
                int p = seg.findR(1, 1, n, pos[i][j], n, b[i]);
                if (p == -1) p = n + 1;
                c.push_back(pos[i][j]);
                //d.push_back(pos[i][j]);
                if (j + 1 < pos[i].size() && p >= pos[i][j + 1])
                    continue;
                c.push_back(p); //d.push_back(p);
                solve(c);
                c.clear(); //d.clear();
                if (j + 1 < pos[i].size()) {
                    p = seg.findL(1, 1, n, 1, pos[i][j + 1], b[i]);
                    assert(p > pos[i][j]);
                    c.push_back(p);
                    //d.push_back(p);
                }
            }
        }
        LL tt = 0;
        for (int i = 1; i <= n; ++i)
            (tt += 1ll * i * ans[i] % Mod * ans[i]) %= Mod;
        printf("%lld\n", tt);
        for (int i = 1; i <= n; ++i)
            ans[i] = 0;
        for (int i = 1; i <= m; ++i)
            pos[i].clear();
    }  
    return 0;
}

这程序好像有点Bug,我给组数据试试?

详细

Test #1:

score: 100
Accepted
time: 14ms
memory: 50624kb

input:

3
11
1 1 2 1 2 2 3 3 2 3 1
3
2024 5 26
3
1000000000 1000000000 1000000000

output:

2564
36
20

result:

ok 3 lines

Test #2:

score: 0
Accepted
time: 155ms
memory: 58108kb

input:

2522
12
642802746 634074578 642802746 634074578 642802746 634074578 634074578 642802746 740396295 634074578 740396295 634074578
16
305950462 400920468 400920468 305950462 400920468 305950462 400920468 400920468 400920468 400920468 305950462 305950462 400920468 305950462 305950462 305950462
2
4405082...

output:

3610
7545
9
1
50
1006
16170
5972
3117
540
540
4417
12885
336
3185
83
9272
27
1794
2776
1793
196
27
1377
8783
19723
5385
1864
3478
7101
1
431
825
4534
9900
162
21644
6
36
14088
306
9
57
1719
72
9
4637
68
16583
17701
19390
16282
5440
1
6
1716
19541
3823
2033
24
825
429
1911
11787
11388
12255
12175
126...

result:

ok 2522 lines

Test #3:

score: 0
Accepted
time: 218ms
memory: 61020kb

input:

1
400000
860350786 641009859 939887597 54748096 641009859 860350786 710156469 985188306 476927808 641009859 985188306 322595515 322595515 973764525 54748096 939887597 54748096 476927808 588586447 669240390 54748096 476927808 669240390 804928248 669240390 75475634 804928248 669240390 985188306 754756...

output:

300998364

result:

ok single line: '300998364'

Test #4:

score: 0
Accepted
time: 259ms
memory: 60468kb

input:

1
400000
860422965 880311831 389867323 711027909 603801945 977217669 127611088 468302420 100563882 896362064 321065270 937796491 106388135 679974087 799365054 508500258 155801089 72992050 568198964 469117950 605828088 147285088 931759705 335154243 123769214 717250374 123769214 588271814 193910044 58...

output:

642490751

result:

ok single line: '642490751'

Test #5:

score: 0
Accepted
time: 313ms
memory: 61420kb

input:

1
400000
489576972 624268112 792793292 261080167 299965397 570683924 43370033 865049228 160224484 597021302 799302320 154578623 616009875 817736437 422498140 177450324 576706528 701882608 322199948 469659816 265384591 886524303 331787804 922381773 642896492 36870304 922875786 328785523 506357505 778...

output:

728396411

result:

ok single line: '728396411'

Test #6:

score: 0
Accepted
time: 140ms
memory: 59952kb

input:

1
400000
79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 79866982 798...

output:

805404149

result:

ok single line: '805404149'

Test #7:

score: 0
Accepted
time: 136ms
memory: 60548kb

input:

1
400000
4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 4163012 416...

output:

871688808

result:

ok single line: '871688808'

Test #8:

score: 0
Accepted
time: 119ms
memory: 60936kb

input:

1
400000
7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 7913 19512 844861162 178869991 19512 19512 19512 19512 19512 19512 19512 135989768 19512 19512 19512 19512 19512 19512 19512 19512 220217 220217 220217 220217 220217 220217 220217 220217 2202...

output:

470566238

result:

ok single line: '470566238'

Test #9:

score: 0
Accepted
time: 170ms
memory: 65856kb

input:

1
400000
1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 2 2 1 2 1 2 1 1 2 1 2 2 1 2 1 2 2 1 1 1 1 2 1 1 1 2 1 1 2 2 1 1 1 1 2 2 1 1 1 2 1 2 1 2 2 1 2 2 2 1 1 2 2 1 2 2 1 1 1 1 2 2 1 1 1 1 2 1 2 2 1 2 1 1 2 2 1 1 2 2 2 1 2 2 2 2 1 2 1 2 1 1 2 2 2 1 1 1 2 1 1 1 1 2 2 2 1 1 2 2 1 2 2 1 1 1 2 1 2 2 2 1 1 2 1 2 1 1 2 2 2...

output:

188247686

result:

ok single line: '188247686'

Test #10:

score: 0
Accepted
time: 165ms
memory: 67952kb

input:

1
400000
1 1 1 1 1 2 2 1 1 1 2 2 1 2 2 1 2 1 1 2 1 1 2 1 2 2 1 2 2 1 2 2 2 1 2 1 2 2 2 1 1 1 2 2 1 2 2 1 1 1 2 1 2 1 2 2 1 2 1 2 1 1 1 2 2 1 1 2 2 2 1 1 2 2 2 2 2 2 2 1 2 2 1 2 1 1 2 1 2 1 2 1 1 1 1 2 1 1 2 2 1 1 1 2 2 1 2 1 1 1 2 1 1 2 1 1 1 1 1 2 1 1 1 2 2 1 2 2 1 1 1 2 1 1 1 1 2 1 1 1 2 1 2 1 2 2...

output:

534522621

result:

ok single line: '534522621'

Test #11:

score: 0
Accepted
time: 170ms
memory: 65824kb

input:

1
400000
2 2 1 1 1 2 1 1 2 2 1 1 1 1 1 1 1 1 2 1 2 2 1 2 2 2 2 1 1 2 1 2 1 1 2 2 2 2 1 2 1 2 1 1 1 2 2 1 2 1 1 1 2 1 1 2 2 1 1 2 2 2 2 2 2 2 1 2 2 2 1 1 1 2 2 1 2 2 2 2 2 1 1 1 1 2 1 2 1 1 1 1 2 1 1 1 2 1 1 2 2 2 1 2 2 1 2 1 2 2 1 2 2 1 1 2 1 2 1 1 2 1 1 2 1 2 1 2 2 2 1 2 2 1 1 2 1 2 2 2 1 2 1 1 2 1...

output:

315282614

result:

ok single line: '315282614'

Test #12:

score: 0
Accepted
time: 185ms
memory: 74368kb

input:

1
400000
7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7...

output:

95707550

result:

ok single line: '95707550'

Test #13:

score: 0
Accepted
time: 221ms
memory: 60240kb

input:

1
400000
34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 34618927 346...

output:

9261320

result:

ok single line: '9261320'

Test #14:

score: 0
Accepted
time: 131ms
memory: 60524kb

input:

1
400000
356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 356559 3565...

output:

639541126

result:

ok single line: '639541126'

Test #15:

score: 0
Accepted
time: 123ms
memory: 60952kb

input:

1
400000
17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 17752 130863 130863 130863 130863 130863 130863 130863 130863 130863 130863 130863 130863 130863 130863 130863 130863 130863 130863 130863 141618 141618 141618...

output:

910375995

result:

ok single line: '910375995'

Test #16:

score: 0
Accepted
time: 199ms
memory: 66396kb

input:

1
400000
2331 2331 18924 21959 27236 27236 30230 36415 36415 46142 53346 53346 61467 63373 63373 74413 75997 77628 79685 79685 85664 85664 85664 85837 87221 89355 89355 101697 101697 104022 104022 107252 107424 109721 116001 116001 116001 116888 117008 119514 121717 123822 123822 123822 128935 13039...

output:

830312990

result:

ok single line: '830312990'

Test #17:

score: 0
Accepted
time: 198ms
memory: 74404kb

input:

1
400000
777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777...

output:

951683280

result:

ok single line: '951683280'

Test #18:

score: 0
Accepted
time: 182ms
memory: 74352kb

input:

1
400000
777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777...

output:

146950933

result:

ok single line: '146950933'

Test #19:

score: 0
Accepted
time: 209ms
memory: 76148kb

input:

1
400000
777 777 777 228 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 167 777 777 777 777 777 777 777 133 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777...

output:

351398572

result:

ok single line: '351398572'

Extra Test:

score: 0
Extra Test Passed