QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#719793 | #8340. 3 Sum | aaaaa | WA | 366ms | 83740kb | C++23 | 3.1kb | 2024-11-07 08:58:25 | 2024-11-07 08:58:26 |
Judging History
answer
#include <bits/stdc++.h>
#ifdef memset0
#define log(...) fprllf(stderr, __VA_ARGS__)
#else
#define log(...) (void(0))
#define endl '\n'
#endif
using namespace std;
/*
#include <bits/stdc++.h>
#ifdef memset0
#define log(...) fprllf(stderr, __VA_ARGS__)
#else
#define log(...) (void(0))
#define endl '\n'
#endif
using namespace std;#include <bits/stdc++.h>
#ifdef memset0
#define log(...) fprllf(stderr, __VA_ARGS__)
#else
#define log(...) (void(0))
#define endl '\n'
#endif
using namespace std;#include <bits/stdc++.h>
#ifdef memset0
#define log(...) fprllf(stderr, __VA_ARGS__)
#else
#define log(...) (void(0))
#define endl '\n'
#endif
using namespace std;
*/
typedef long long ll;
const ll N = 501;
const ll p1 = 998244353, p2 = 1e9 + 7, p3 = 1e9 + 9, p4 = 1e9 + 21, p5 = 1e9 + 33, p6 = 999999937;
ll n, m;
map<ll, vector<ll>> a;
struct hashing {
ll 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(ll 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 && d == rhs.d && e == rhs.e && f == rhs.f; }
} h[N];
void solve_mod(vector<ll> &a) {
if (a.size() < m) {
a.resize(m);
}
while (a.size() > m) {
for (ll i = m; i < a.size(); i++) {
a[i % m] += a[i];
a[i] = 0;
}
for (ll 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 (ll i = 0; i < a.size(); i++)
if (a[i] != 9) return;
for (ll i = 1; 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 (ll i = 0; i < n; i++) {
string s;
cin >> s;
for (ll j = (ll)s.length() - 1; j >= 0; j--) {
a[i].push_back(s[j] - '0');
}
solve_mod(a[i]);
// for (ll x : a[i]) log("%d,", x);
// log("\n");
for (ll j = m; j >= 0; 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 (ll 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);
ll ans = 0;
for (ll i = 0; i < n; i++) {
hashing u = h[i];
for (ll j = i; j < n; j++) {
hashing v = h[j];
v += u;
for (ll 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;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3504kb
input:
4 1 0 1 10 17
output:
3
result:
ok 1 number(s): "3"
Test #2:
score: 0
Accepted
time: 78ms
memory: 7776kb
input:
500 859 7118711592236878297922359501613604144948355616986970837340677671376753603836852811886591300370143151943368529129749813118476151865844255212534355441611481420938483178075143062691345257288242460282715389758789648541099090735875617822348551942134616963557723055980260082230902505269975518146286...
output:
0
result:
ok 1 number(s): "0"
Test #3:
score: 0
Accepted
time: 366ms
memory: 83544kb
input:
500 17336 11871159223687829792235950161360414494835561698697083734067767137675360383685281188659130037014315194336852912974981311847615186584425521253435544161148142093848317807514306269134525728824246028271538975878964854109909073587561782234855194213461696355772305598026008223090250526997551814628...
output:
0
result:
ok 1 number(s): "0"
Test #4:
score: -100
Wrong Answer
time: 238ms
memory: 83740kb
input:
500 1 751324443898124078584847834484321089092662321556147445230263526014359393841194947303407593948729802551881289193716611867931891257925091769456350249725997883453296895094445731130479434019358742162771547784250401546380268386074363779242500860317042151185119666027858022664683818314351285215150806...
output:
2277515
result:
wrong answer 1st numbers differ - expected: '2327631', found: '2277515'