# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
803134 | Augustyn | Set (COCI21_set) | C++17 | 1088 ms | 48088 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<vector>
using namespace std;
int trzecia(vector<int>&p,vector<int>&d)
{
int ret=0;
for(int i=0;i<p.size();++i)
{
if(p[i]==d[i])
ret=ret*3+p[i]-1;
else
ret=ret*3+(p[i]^d[i])-1;
}
return ret;
}
int main()
{
ios_base::sync_with_stdio(0);
int n,k,odp=0;
cin>>n>>k;
vector<vector<int>>wek(n);
char wcz;
int doktej=1;
for(int i=1;i<=k;++i)
doktej*=3;
vector<int>istnieje(doktej,-1);
for(int i=0;i<n;++i)
{
wek[i].resize(k);
int wtroj=0;
for(int j=0;j<k;++j)
{
cin>>wcz;
wek[i][j]=wcz-'0';
wtroj=wtroj*3+wek[i][j]-1;
}
istnieje[wtroj]=i;
}
for(int i=0;i<n/2;++i)
{
for(int j=i+1;j<n/2;++j)
{
int pom=istnieje[trzecia(wek[i],wek[j])];
if(pom>j)
++odp;
}
}
for(int i=n/2;i<n;++i)
{
for(int j=i+1;j<n;++j)
{
int pom=istnieje[trzecia(wek[i],wek[j])];
if(pom!=-1&&pom<n/2||pom>j)
++odp;
}
}
cout<<odp;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |