# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
530981 | Tenis0206 | Skandi (COCI20_skandi) | C++11 | 180 ms | 14876 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n,m;
char c[505][505];
int sus[505][505], stg[505][505];
vector<int> G[250005];
bool sel[250005], st[250005], dr[250005];
int l[250005],r[250005];
bool cupleaza(int nod)
{
sel[nod] = true;
for(auto it : G[nod])
{
if(!r[it])
{
r[it] = nod;
l[nod] = it;
return true;
}
}
for(auto it : G[nod])
{
if(!sel[r[it]] && cupleaza(r[it]))
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |