이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
using namespace std;
int main()
{
int i,j;
int num;
int num1;
int a[701],b[701];
scanf("%d%d",&num1,&num);
for(i=0;i<num;i++) {
scanf("%d%d",&a[i],&b[i]);
}
int num2,a1,b1,k;
int t[1000];
int ans[1000];
int ans1;
scanf("%d",&num2);
for(i=0;i<num2;i++) {
scanf("%d%d",&a1,&b1);
for(j=0;j<num1;j++) {
t[j]=j+1;
}
for(j=0;j<num1;j++) {
ans[j]=0;
}
for(j=0;j<num;j++) {
if(a1-1<=j && j<=b1-1) continue;
if(a[j]>b[j]) {
for(k=0;k<num1;k++) {
if(t[k]==b[j]) t[k]=a[j];
}
} else {
for(k=0;k<num1;k++) {
if(t[k]==a[j]) t[k]=b[j];
}
}
}
for(j=0;j<num1;j++) {
ans[t[j]-1]=1;
}
ans1=0;
for(j=0;j<num1;j++) {
if(ans[j]==1) ans1++;
}
printf("%d\n",ans1);
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |