# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
2858 | naver1 | 간선 파괴 (GA5_destroy) | C++98 | 192 ms | 1088 KiB |
이 제출은 이전 버전의 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<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];
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |