# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
333598 | nicholask | 자리 배치 (IOI18_seats) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "seats.h"
#include <bits/stdc++.h>
using namespace std;
int n,m;
pair <int,int> pos[1000000];
vector <vector <int> > a;
void give_initial_chart(int h,int w,vector <int> r,vector <int> c){
n=h;
m=w;
vector <vector <int> > v(h);
for (int i=0; i<h; i++){
vector <int> e(w);
v[i]=e;
}
for (int i=0; i<h*w; i++){
pos[i]={r[i],c[i]};
v[r[i]][c[i]]=i;
}
a=v;
}
int swap_seats(int a,int b){
pair <int,int> wha=pos[a],whb=pos[b];
swap(pos[a],pos[b]);
swap(v[wha.first][wha.second],v[whb.first][whb.second]);
int ans=0;
int minr=1e9,maxr=-1e9,minc=1e9,maxc=-1e9;
for (int i=0; i<h*w; i++){
//get pos[i]
minr=min(minr,pos[i].first);
maxr=max(maxr,pos[i].first);
minc=min(minc,pos[i].second);
maxc=max(maxc,pos[i].second);
int a=(maxr-minr+1)*(maxc-minc+1);
if (a==i+1) ans++;
}
return ans;
}