# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
134765 | Boxworld | 자리 배치 (IOI18_seats) | C++14 | 4082 ms | 40868 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "seats.h"
#include <bits/stdc++.h>
using namespace std;
const int maxN=1000100;
struct node{int x,y;}p[maxN];
int h,w;
void give_initial_chart(int H, int W, std::vector<int> R, std::vector<int> C) {
h=H;w=W;
for (int i=0;i<H*W;i++){
p[i].x=R[i];p[i].y=C[i];
}
}
int swap_seats(int a, int b){
int t=a,ans=0;
swap(p[a],p[b]);
int Hi=p[0].x,Hx=p[0].x,Wi=p[0].y,Wx=p[0].y;
for (int i=0;i<h*w;i++){
if (p[i].x<Hi)Hi=p[i].x;
if (p[i].x>Hx)Hx=p[i].x;
if (p[i].y<Wi)Wi=p[i].y;
if (p[i].y>Wx)Wx=p[i].y;
if ((Hx-Hi+1)*(Wx-Wi+1)==i+1)ans++;
}
return ans;
}
컴파일 시 표준 에러 (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... |