QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#369416 | #8340. 3 Sum | Giga_Cronos | TL | 322ms | 50868kb | C++20 | 2.8kb | 2024-03-28 08:13:49 | 2024-03-28 08:13:49 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pb push_back
#define sz(x) (int)(x.size())
#define fs first
#define sc second
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define mid (L + R) / 2
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<pii> vpii;
typedef __int128_t int128;
mt19937_64 rnd(chrono::steady_clock::now().time_since_epoch().count());
int n, k;
const vi Mods = {1'000'000'009, 2'000'000'099,998'244'353,1'000'000'007};
struct Hash {
vi H;
Hash() { H.assign(4, 0); }
Hash(int a) { H.assign(4, a); }
Hash(vi F) : H(F) {}
Hash operator-(Hash A) {
vi Nas(4);
for (int i = 0; i < 4; i++) {
Nas[i] = (H[i] + Mods[i] - A.H[i]);
if (Nas[i] >= Mods[i])
Nas[i] -= Mods[i];
if (Nas[i] >= Mods[i])
Nas[i] -= Mods[i];
}
return Hash{Nas};
}
Hash operator+(Hash A) {
vi Nas(4);
for (int i = 0; i < 4; i++) {
Nas[i] = (H[i] + A.H[i]);
if (Nas[i] >= Mods[i])
Nas[i] -= Mods[i];
}
return Hash{Nas};
}
Hash operator+(int a) {
vi Nas(4);
for (int i = 0; i < 4; i++) {
Nas[i] = (H[i] + a);
if (Nas[i] >= Mods[i])
Nas[i] -= Mods[i];
}
return Hash{Nas};
}
Hash operator*(int mul) {
vi Nas(4);
for (int i = 0; i < 4; i++) {
Nas[i] = (H[i] * mul) % Mods[i];
}
return Hash{Nas};
}
bool operator==(Hash A) {
return A.H==H;
}
};
void problem() {
scanf("%lld %lld", &n, &k);
vector<Hash> A;
char ss[(int)(2e4 + 5)];
for (int i = 0; i < n; i++) {
scanf("%s", ss);
string s = string(ss);
// string s;s.assign(2e4,'0');
reverse(all(s));
vi F(k);
for (int j = 0; j < sz(s); j++) {
F[j % k] += s[j] - '0';
}
while (1) {
bool ok = true;
for (int j = 0; j < k; j++) {
int extra = F[j] / 10;
F[j] %= 10;
F[(j + 1) % k] += extra;
if (extra)
ok = false;
}
if (ok)
break;
}
vi H(4);
for (int j = 0; j < k; j++) {
for(int h=0;h<4;h++){
H[h]=(H[h]*10+F[j])%Mods[h];
}
}
A.pb(Hash(H));
}
vector<Hash> Ans;
Ans.pb(Hash());
Hash Num;
for (int i = 0; i < k; i++) {
Num = Num * 10;
Num = Num + 9;
}
Ans.pb(Num);
Num = Num * 2;
Ans.pb(Num);
map<vi, int> M;
int ans = 0;
for (int i = 0; i < n; i++) {
M[A[i].H]++;
vector<Hash> Sum = Ans;
for (int h = 0; h < 3; h++) {
Sum[h] = Sum[h] - A[i];
}
for (int j = i; j < n; j++) {
for (int h = 0; h < 3; h++) {
ans += M[(Sum[h] - A[j]).H];
}
}
}
printf("%lld\n", ans);
}
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int tc = 1;
// cin>>tc;
while (tc--) {
problem();
// cout << "\n";
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 4080kb
input:
4 1 0 1 10 17
output:
3
result:
ok 1 number(s): "3"
Test #2:
score: 0
Accepted
time: 322ms
memory: 50868kb
input:
500 859 7118711592236878297922359501613604144948355616986970837340677671376753603836852811886591300370143151943368529129749813118476151865844255212534355441611481420938483178075143062691345257288242460282715389758789648541099090735875617822348551942134616963557723055980260082230902505269975518146286...
output:
0
result:
ok 1 number(s): "0"
Test #3:
score: -100
Time Limit Exceeded
input:
500 17336 11871159223687829792235950161360414494835561698697083734067767137675360383685281188659130037014315194336852912974981311847615186584425521253435544161148142093848317807514306269134525728824246028271538975878964854109909073587561782234855194213461696355772305598026008223090250526997551814628...
output:
0