# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1117181 | StefanSebez | PIN (CEOI10_pin) | C++14 | 415 ms | 16456 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;
#define fi first
#define se second
#define pb push_back
#define ll long long
#define ld long double
const int N=50050;
int main(){
int n,D;scanf("%i%i",&n,&D);
string s[n+10];for(int i=0;i<n;i++) cin>>s[i];
ll res=0;
map<string,ll>mapa;
for(int i=0;i<n;i++){
for(int mask=0;mask<16;mask++){
string t=s[i];int ct=0;
for(int j=0;j<4;j++){
if((mask>>j)&1) t[j]='?',ct++;
}
if(ct>D) continue;
if(D%2==ct%2) res+=mapa[t];
else res-=mapa[t];
}
for(int mask=0;mask<16;mask++){
string t=s[i];
for(int j=0;j<4;j++){
if((mask>>j)&1) t[j]='?';
}
mapa[t]++;
}
}
printf("%lld\n",res);
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |