# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
154734 | arnold518 | PIN (CEOI10_pin) | C++14 | 150 ms | 3064 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 5e4;
int N, D;
int A[MAXN+10][5], T[5]={1, 40, 40*40, 40*40*40};
ll ans[5];
int f(char x)
{
if('0'<=x && x<='9') return x-'0';
else return x-'a'+10;
}
int solve()
{
int i, j, k, p, q;
for(i=0; i<4; i++)
{
map<int, int> M;
for(j=1; j<=N; j++)
{
ans[1]+=M[A[j][4]-A[j][i]];
M[A[j][4]-A[j][i]]++;
}
}
for(i=0; i<4; i++)
{
for(j=i+1; j<4; j++)
{
map<int, int> M;
for(k=1; k<=N; k++)
{
ans[2]+=M[A[k][4]-A[k][i]-A[k][j]];
M[A[k][4]-A[k][i]-A[k][j]]++;
}
}
}
ans[2]-=ans[1];
}
int main()
{
int i, j;
scanf("%d%d", &N, &D);
for(i=1; i<=N; i++)
{
char s[5];
scanf("%s", s);
A[i][0]=f(s[0])*T[0];
A[i][1]=f(s[1])*T[1];
A[i][2]=f(s[2])*T[2];
A[i][3]=f(s[3])*T[3];
A[i][4]=A[i][0]+A[i][1]+A[i][2]+A[i][3];
}
solve();
printf("%lld", ans[D]);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |