# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
30081 | tlwpdus | 무제 (POI11_smi) | C++11 | 1309 ms | 94520 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> pii;
int n, m, p;
vector<pii> lis[100100];
bool chk[1000100], visit[100100];
int idx[100100];
vector<int> ans[1000100];
stack<int> st;
void dfs(int here) {
visit[here] = 1;
for (;idx[here]<lis[here].size();) {
pii tmp = lis[here][idx[here]]; idx[here]++;
int there = tmp.second;
if (chk[tmp.first]) continue;
chk[tmp.first] = 1;
dfs(there);
}
st.push(here);
}
bool good[100100];
stack<int> tt;
void add() {
while(!st.empty()) {
int here = st.top(); st.pop();
if (good[here]) {
ans[p].push_back(here);
while(tt.top()!=here) {
ans[p].push_back(tt.top()); good[tt.top()] = 0; tt.pop();
}
ans[p].push_back(here); p++;
}
else {
good[here] = 1;
tt.push(here);
}
}
if (tt.size()>1) printf("SIBAL\n");
while(!tt.empty()) tt.pop();
}
int main() {
int i;
scanf("%d%d",&n,&m);
for (i=0;i<m;i++) {
int a, b, s, t;
scanf("%d%d%d%d",&a,&b,&s,&t); --a; --b;
if (s^t) {
lis[a].push_back(pii(i,b));
lis[b].push_back(pii(i,a));
}
}
for (i=0;i<n;i++) {
if (lis[i].size()%2) {
printf("NIE\n");
return 0;
}
}
for (i=0;i<n;i++) {
if (visit[i]) continue;
dfs(i);
add();
}
printf("%d\n",p);
for (i=0;i<p;i++) {
printf("%d ",(int)ans[i].size()-1);
for (int &v : ans[i]) printf("%d ",v+1);
printf("\n");
}
return 0;
}
컴파일 시 표준 에러 (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... |
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |