# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
821097 | PVM_pvm | Marshmallow Molecules (CCO19_day2problem2) | C++17 | 4059 ms | 245876 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define MAXN 100007
bitset<MAXN> gr[MAXN];
int n,m;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin>>n>>m;
for (int q=0;q<m;q++)
{
int a,b;
cin>>a>>b;
gr[a][b]=1;
}
long long ans=0;
for (int q=1;q<=n;q++)
{
ans+=gr[q].count();
while(true)
{
int pos=gr[q]._Find_first();
if (pos==gr[q].size()) break;
gr[q][pos]=0;
gr[pos]=gr[pos]|gr[q];
}
}
cout<<ans<<"\n";
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |