QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#51666 | #4887. Fast Bridges | zhoukangyang# | TL | 142ms | 5028kb | C++11 | 4.7kb | 2022-10-03 12:42:25 | 2022-10-03 12:42:26 |
Judging History
answer
#include<bits/stdc++.h>
#define L(i, j, k) for(int i = (j); i <= (k); ++i)
#define R(i, j, k) for(int i = (j); i >= (k); --i)
#define ll long long
#define ull unsigned long long
#define vi vector <int>
#define sz(a) ((int) (a).size())
#define me(f, x) memset(f, x, sizeof(f))
#define uint unsigned int
using namespace std;
const int N = 507, mod = 998244353, iv3 = (mod + 1) / 3;
int n, k;
struct tup {
int xl, xr, yl, yr;
} f[N];
struct vec {
int x, y;
};
//int a[N];
//unsigned long long A[64];
//unsigned long long cur;
//inline int lst(int x) {
// int bk = x >> 6, t = x & 63;
// ull o = A[bk] & ((1ull << (t + 1)) - 1);
// if(o) return 63 - __builtin_clzll(o) + (bk << 6);
// ull G = cur & ((1ull << bk) - 1);
// if(!G) return 0;
// int c = 63 - __builtin_clzll(G);
// return (63 - __builtin_clzll(A[c])) + (c << 6);
//}
//inline int nxt(int x) {
// int bk = x >> 6, t = x & 63;
// ull o = A[bk] >> t;
// if(o) return __builtin_ctzll(o) + (bk << 6) + t;
// ull G = cur >> (bk + 1);
// if(!G) return 0;
// int c = __builtin_ctzll(G) + bk + 1;
// return __builtin_ctzll(A[c]) + (c << 6);
//}
//void init() {
// me(a, 0x3f), me(A, 0), cur = 0, me(vis, 0);
//}
//void ins(int x) {
// int bk = x >> 6, t = x & 63;
// A[bk] |= 1ull << t, cur |= 1ull << bk;
// vis[x] = true;
//}
//void del(int x) {
// int bk = x >> 6, t = x & 63;
// if(A[bk] >> t & 1) A[bk] ^= 1ull << t;
// if(!A[bk] && (cur >> bk & 1)) cur ^= 1ull << bk;
// vis[x] = false;
//}
//void insert(int x, int w) {
// a[x] = min(a[x], w);
// if(!vis[x]) {
// int u = nxt(x);
// if(u <= n && a[u] <= a[x]) return ;
// ins(x);
// }
// while(true) {
// int u = lst(x - 1);
// if(!u || a[u] < a[x]) return ;
// del(u), a[u] = 1e9;
// }
//}
int dis[N][N];
int arrx[N], arry[N], atotx, atoty;
bool vis[N];
int t[N];
vi gp[N], st[N];
int haha[N], xl[N], yl[N];
vector < int > id[N];
int arr[N], atot;
int work(vector < pair < int, int > > vp) {
L(i, 1, n) vis[i] = false, gp[i].clear();
for(auto u : vp) vis[u.first] = true, gp[u.first].emplace_back(u.second);
atotx = atoty = 0;
L(i, 1, n) if(vis[i]) arrx[++atotx] = f[i].xl;
sort(arrx + 1, arrx + atotx + 1), atotx = unique(arrx + 1, arrx + atotx + 1) - arrx - 1;
L(i, 1, n) if(vis[i]) xl[i] = lower_bound(arrx + 1, arrx + atotx + 1, f[i].xl) - arrx;
L(i, 1, n) if(vis[i]) arry[++atoty] = f[i].yl;
sort(arry + 1, arry + atoty + 1), atoty = unique(arry + 1, arry + atoty + 1) - arry - 1;
L(i, 1, n) if(vis[i]) yl[i] = lower_bound(arry + 1, arry + atoty + 1, f[i].yl) - arry;
me(t, 0);
L(i, 1, n) if(vis[i]) id[xl[i]].emplace_back(i);
L(i, 0, n) st[i].clear();
int ns = 0;
R(i, atotx, 1) {
for(const int &ic : id[i])
for(const int &u : gp[ic]) t[u] = max(t[u], yl[ic]);
int rns = 0, sum = 0;
L(j, 1, n) if(t[j]) st[t[j]].emplace_back(j);
me(haha, 0);
R(j, atoty, 1) {
if(sz(st[j])) {
for(const int &a : st[j]) {
L(t, 1, f[a].xr)
if(haha[t] < f[a].yr)
(sum += (ll) (arr[t] - arr[t - 1]) * (f[a].yr - haha[t]) % mod) %= mod,
haha[t] = f[a].yr;
}
st[j].clear();
}
(rns += (ll) sum * (arry[j] - arry[j - 1]) % mod) %= mod;
}
(ns += (ll) rns * (arrx[i] - arrx[i - 1]) % mod) %= mod;
}
L(i, 1, n) if(vis[i]) id[xl[i]].clear();
return ns;
}
vector < pair < int, int > > vq[N];
int solve(vector < tup > T) {
n = sz(T);
L(i, 1, sz(T)) f[i] = T[i - 1];
me(dis, -0x3f);
L(i, 1, n) dis[i][i] = 0;
L(i, 1, n) L(j, 1, n) if(f[i].xr <= f[j].xl && f[i].yr <= f[j].yl) dis[i][j] = 1;
L(k, 1, n) L(i, 1, n) L(j, 1, n) dis[i][j] = max(dis[i][j], dis[i][k] + dis[k][j]);
L(i, 0, n) vq[i].clear();
L(i, 1, n) L(j, 1, n) if(dis[i][j] >= 0) vq[dis[i][j]].emplace_back(make_pair(i, j));
atot = 0;
L(i, 1, n) f[i].xr = k - f[i].xr + 1, f[i].yr = k - f[i].yr + 1, arr[++atot] = f[i].xr;
sort(arr + 1, arr + atot + 1), atot = unique(arr + 1, arr + atot + 1) - arr - 1;
L(i, 1, n) f[i].xr = lower_bound(arr + 1, arr + atot + 1, f[i].xr) - arr;
int qwq = 0;
L(i, 0, n - 1) if(sz(vq[i])) qwq += work(vq[i]), qwq %= mod;
return qwq;
}
int main() {
ios :: sync_with_stdio(false);
cin.tie(0); cout.tie(0);
int n;
cin >> n >> k;
vector < tup > A, B;
while(n--) {
tup a;
cin >> a.xl >> a.yl >> a.xr >> a.yr;
if(a.yl > a.yr) {
a.yl = k - a.yl + 1;
a.yr = k - a.yr + 1;
A.push_back(a);
} else {
B.push_back(a);
}
}
int ns = (ll) (k + 1) * k % mod * (k - 1) % mod * iv3 % mod * k % mod * k % mod;
(ns += mod - solve(A)) %= mod;
(ns += mod - solve(B)) %= mod;
cout << ns << '\n';
return 0;
}
/*
2 5
3 3 4 5
3 3 5 4
*/
详细
Test #1:
score: 100
Accepted
time: 3ms
memory: 4644kb
input:
2 2 1 1 2 2 1 2 2 1
output:
6
result:
ok answer is '6'
Test #2:
score: 0
Accepted
time: 3ms
memory: 4700kb
input:
0 1000000000
output:
916520226
result:
ok answer is '916520226'
Test #3:
score: 0
Accepted
time: 3ms
memory: 4732kb
input:
5 5 1 1 3 3 3 3 5 1 3 3 4 5 3 3 5 4 1 5 3 3
output:
946
result:
ok answer is '946'
Test #4:
score: 0
Accepted
time: 1ms
memory: 4748kb
input:
200 5 1 1 4 2 2 5 4 4 2 3 4 2 2 4 3 5 1 4 4 2 2 5 4 2 1 2 4 4 1 2 2 4 1 4 5 1 3 4 5 1 4 2 5 1 2 2 5 4 3 2 5 1 3 1 5 2 4 2 5 3 1 3 5 1 3 4 4 5 2 2 4 3 2 3 5 4 1 4 5 3 2 2 3 1 2 5 3 3 1 1 5 3 4 4 5 5 1 3 4 4 4 3 5 1 2 3 3 4 3 4 4 2 1 4 4 5 2 1 4 4 1 3 5 2 1 1 3 3 1 5 3 1 1 1 3 5 1 4 3 5 4 5 5 4 1 1 4 ...
output:
708
result:
ok answer is '708'
Test #5:
score: 0
Accepted
time: 20ms
memory: 4680kb
input:
500 10 5 6 7 10 1 3 8 10 3 3 4 9 2 10 10 2 9 4 10 10 5 4 7 8 7 1 10 7 3 1 7 10 5 2 8 9 6 3 7 10 3 10 7 9 4 9 5 1 2 5 3 3 7 10 8 2 7 7 9 8 6 6 8 3 5 10 8 8 1 1 5 5 3 3 10 5 5 5 7 6 3 8 4 7 6 7 7 5 7 3 10 9 5 3 9 4 4 6 10 5 1 5 9 10 5 6 9 7 3 10 10 3 1 2 5 7 4 6 5 1 3 1 8 5 5 8 8 9 1 8 4 3 6 4 7 10 7 ...
output:
27373
result:
ok answer is '27373'
Test #6:
score: 0
Accepted
time: 22ms
memory: 4732kb
input:
500 30 3 13 20 29 14 5 16 25 2 29 9 15 23 30 24 9 1 18 24 28 4 16 5 2 3 29 30 25 4 8 24 19 8 26 10 24 20 14 26 25 15 8 25 25 5 13 18 28 3 30 29 10 14 26 25 11 11 19 16 4 9 4 29 30 15 10 16 8 2 29 12 2 11 22 20 28 4 10 28 1 24 17 30 1 8 26 27 9 15 25 30 14 16 20 24 17 9 23 12 13 9 16 25 28 2 15 8 16 ...
output:
7717993
result:
ok answer is '7717993'
Test #7:
score: 0
Accepted
time: 19ms
memory: 4740kb
input:
500 100 25 55 55 43 14 22 84 5 57 7 79 15 63 9 86 23 22 3 53 97 2 22 64 65 32 52 66 30 76 37 79 22 46 100 76 22 21 78 78 44 29 41 92 55 43 14 46 3 14 97 42 1 16 7 35 64 15 27 29 3 11 92 92 70 4 13 66 2 3 38 55 82 41 94 83 44 52 90 100 82 6 100 99 70 18 38 24 22 74 17 98 20 17 94 44 82 33 97 48 19 12...
output:
291628571
result:
ok answer is '291628571'
Test #8:
score: 0
Accepted
time: 71ms
memory: 4932kb
input:
500 8 2 4 8 2 3 7 5 4 2 6 8 1 4 8 5 5 6 6 7 5 2 6 5 5 1 6 8 5 6 5 7 3 4 8 5 7 5 7 6 5 1 6 4 5 2 3 4 2 2 8 8 6 3 8 4 3 5 6 7 2 7 8 8 3 1 8 4 7 1 6 6 1 1 8 7 1 1 4 3 3 2 3 3 1 1 4 5 1 1 8 5 4 7 7 8 5 2 7 4 1 3 7 4 3 2 3 5 1 3 7 8 1 4 7 5 5 6 6 8 3 2 7 5 1 2 5 4 3 5 4 8 2 4 5 8 3 2 3 4 1 2 8 3 2 5 6 8 ...
output:
9321
result:
ok answer is '9321'
Test #9:
score: 0
Accepted
time: 36ms
memory: 4916kb
input:
500 1000000000 228604634 522874974 789854111 585676486 340802063 175643637 661594207 749079321 490078806 844144515 583746323 707696611 833939453 901516824 867397264 848066012 553537526 886003963 679012061 187030606 351500555 847099665 751201742 855105070 169763646 729114554 248951243 211939611 17040...
output:
230090667
result:
ok answer is '230090667'
Test #10:
score: 0
Accepted
time: 125ms
memory: 4820kb
input:
500 1000000000 536804949 618264275 757262973 133194920 206604343 420304040 244005624 331707206 64548973 877773848 685024560 565782395 13572244 271309598 835979107 128627415 128103153 561746493 703898577 9276472 209282309 997406956 216339996 279878227 386095652 999498735 908610032 582414132 232191790...
output:
404991176
result:
ok answer is '404991176'
Test #11:
score: 0
Accepted
time: 138ms
memory: 5024kb
input:
500 1000000000 435165109 887707979 541968631 834720917 43164344 595179931 731392283 541750474 51147932 885859385 525997101 813310992 581745995 569929983 666239343 349298365 720599913 330436249 751561895 84593980 254142704 924477087 706739688 760929039 282091849 414650019 853811117 121534462 21407507...
output:
174105246
result:
ok answer is '174105246'
Test #12:
score: 0
Accepted
time: 142ms
memory: 5028kb
input:
500 1000000000 334968963 60182667 683993047 330063742 372714145 727060351 391638535 972082352 15288009 443033033 549932294 626507494 551292358 201286324 844192128 989162325 138957062 834473180 233314539 840742618 774917762 293038146 784290713 868100668 88362426 108423246 90763875 635080794 197409326...
output:
819654628
result:
ok answer is '819654628'
Test #13:
score: 0
Accepted
time: 133ms
memory: 4936kb
input:
500 1000000000 407797655 600906761 451028876 557753318 739109786 505834673 914488662 267694229 21613693 815099602 741520301 86754775 749426136 864500481 989644055 760004108 97929570 281277866 645537954 194083134 386298407 900097354 590149576 876589970 225981751 604462892 313700311 201620926 13512935...
output:
704804476
result:
ok answer is '704804476'
Test #14:
score: 0
Accepted
time: 34ms
memory: 4800kb
input:
500 1000000000 136588729 322381152 198423052 586895024 146201252 78771798 320963978 33171878 103014217 582579333 112482565 472327049 363500012 171569343 779799989 210605961 916348434 897403875 958218658 848653603 81959275 288412262 293263271 877464982 155884974 409342051 490632310 353856648 42868173...
output:
701057894
result:
ok answer is '701057894'
Test #15:
score: 0
Accepted
time: 38ms
memory: 4820kb
input:
500 1000000000 70732466 818210159 101241592 180120566 551559764 430141447 558477026 919623562 842854549 898003264 988655980 690377539 365038538 842566580 988616538 612555368 119137999 522482797 776356145 341894154 134943863 753491473 621956497 857574689 860979233 313689040 912231580 819779431 253383...
output:
849305849
result:
ok answer is '849305849'
Test #16:
score: 0
Accepted
time: 37ms
memory: 4812kb
input:
500 1000000000 76067493 226360208 588463712 997370258 247139391 228988779 876938260 628658287 173490201 249999131 402004522 332729284 73514885 82656638 357464837 702514607 288650085 526722777 582817141 741491871 859774917 73498480 878952996 868608989 248586909 115745356 485233299 599896403 302539166...
output:
980753674
result:
ok answer is '980753674'
Test #17:
score: -100
Time Limit Exceeded
input:
500 919069957 742507159 740217847 742778031 741238898 320301045 312370945 321929532 313537690 344928356 347275650 349920032 348402734 128430402 156747983 128702472 159673979 89940237 122339622 90602165 123930504 638094551 604903042 638437986 606101004 118489244 152414022 121260981 154139858 41785067...