# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1117181 | StefanSebez | PIN (CEOI10_pin) | C++14 | 415 ms | 16456 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |