QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#463260 | #8340. 3 Sum | PlentyOfPenalty# | WA | 155ms | 43684kb | C++20 | 2.6kb | 2024-07-04 16:41:27 | 2024-07-04 16:41:27 |
Judging History
answer
#include <bits/stdc++.h>
#ifdef memset0
#define log(...) fprintf(stderr, __VA_ARGS__)
#else
#define log(...) (void(0))
#define endl '\n'
#endif
using namespace std;
using ui = unsigned int;
using ull = unsigned long long;
const int N = 509;
const ui p1 = 998244353, p2 = 1e9 + 7, p3 = 1e9 + 9, p4 = 1e9 + 21, p5 = 1e9 + 33, p6 = 999999937;
int n, m;
vector<int> a[N];
struct hashing {
ui a, b, c, d, e, f;
hashing() : a(0), b(0), c(0), d(0), e(0), f(0) {}
void operator+=(const hashing &rhs) {
a += rhs.a;
b += rhs.b;
c += rhs.c;
d += rhs.d;
e += rhs.e;
f += rhs.f;
if (a >= p1) a -= p1;
if (b >= p2) b -= p2;
if (c >= p3) c -= p3;
if (d >= p4) d -= p4;
if (e >= p5) e -= p5;
if (f >= p6) f -= p6;
}
void upd(int x) {
a = (a * 10ll + x) % p1;
b = (b * 10ll + x) % p2;
c = (c * 10ll + x) % p3;
d = (d * 10ll + x) % p4;
e = (e * 10ll + x) % p5;
f = (f * 10ll + x) % p6;
}
bool operator==(const hashing &rhs) const { return a == rhs.a && b == rhs.b && c == rhs.c; }
} h[N];
void solve_mod(vector<int> &a) {
if (a.size() < m) {
a.resize(m);
}
while (a.size() > m) {
for (int i = m; i < a.size(); i++) {
a[i % m] += a[i];
a[i] = 0;
}
for (int i = 0; i + 1 < a.size(); i++) {
a[i + 1] += a[i] / 10;
a[i] %= 10;
}
while (a.size() > m && a.back() == 0) a.pop_back();
}
for (int i = 0; i < a.size(); i++)
if (a[i] != 9) return;
for (int i = 0; i < a.size(); i++) a[i] = 0;
}
int main() {
#ifdef memset0
freopen("M.in", "r", stdin);
#endif
cin.tie(0)->sync_with_stdio(0);
cin >> n >> m;
for (int i = 0; i < n; i++) {
string s;
cin >> s;
for (int j = (int)s.length() - 1; j >= 0; j--) {
a[i].push_back(s[j] - '0');
}
solve_mod(a[i]);
// for (int x : a[i]) log("%d,", x);
// log("\n");
for (int j = 0; j < m; j++) {
h[i].upd(a[i][j]);
}
// log("%u %u %u\n", h[i].a, h[i].b, h[i].c);
}
hashing tg0, tg1, tg2;
for (int i = 0; i < m; i++) {
tg1.upd(9);
}
tg2 = tg1, tg2 += tg1;
// log("tg1 = %u %u %u\n", tg1.a, tg1.b, tg1.c);
// log("tg2 = %u %u %u\n", tg2.a, tg2.b, tg2.c);
int ans = 0;
for (int i = 0; i < n; i++) {
hashing u = h[i];
for (int j = i; j < n; j++) {
hashing v = h[j];
v += u;
for (int k = j; k < n; k++) {
hashing w = h[k];
w += v;
// log("%d %d %d : %u %u %u\n", i, j, k, w.a, w.b, w.c);
if (w == tg0 || w == tg1 || w == tg2) {
++ans;
}
}
}
}
cout << ans << endl;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3884kb
input:
4 1 0 1 10 17
output:
3
result:
ok 1 number(s): "3"
Test #2:
score: 0
Accepted
time: 46ms
memory: 5456kb
input:
500 859 7118711592236878297922359501613604144948355616986970837340677671376753603836852811886591300370143151943368529129749813118476151865844255212534355441611481420938483178075143062691345257288242460282715389758789648541099090735875617822348551942134616963557723055980260082230902505269975518146286...
output:
0
result:
ok 1 number(s): "0"
Test #3:
score: 0
Accepted
time: 155ms
memory: 43476kb
input:
500 17336 11871159223687829792235950161360414494835561698697083734067767137675360383685281188659130037014315194336852912974981311847615186584425521253435544161148142093848317807514306269134525728824246028271538975878964854109909073587561782234855194213461696355772305598026008223090250526997551814628...
output:
0
result:
ok 1 number(s): "0"
Test #4:
score: 0
Accepted
time: 124ms
memory: 43636kb
input:
500 1 751324443898124078584847834484321089092662321556147445230263526014359393841194947303407593948729802551881289193716611867931891257925091769456350249725997883453296895094445731130479434019358742162771547784250401546380268386074363779242500860317042151185119666027858022664683818314351285215150806...
output:
2327631
result:
ok 1 number(s): "2327631"
Test #5:
score: 0
Accepted
time: 110ms
memory: 43684kb
input:
500 2 408542968136435277974575411503179002415404345446801430469044749372949272333801248935236224652806667129749035002588943020176263162139056819871274824302889304493205266143688886696157147111754418731401856424401766968832165255416237731963027205324149660112574729610391396555581935236134531799950318...
output:
212002
result:
ok 1 number(s): "212002"
Test #6:
score: -100
Wrong Answer
time: 135ms
memory: 43500kb
input:
500 11500 75411775796562109942642493394321873284995260953010112281856775261847503626737348402159485133662757032091519863427156582689971229143089317472838196453888261138079171290535429921921548971897026706656838415620603757605079012541561774699628665865662183868374645956694140356716037674688084770628...
output:
48
result:
wrong answer 1st numbers differ - expected: '7675', found: '48'