# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1047100 | Lib | Seats (IOI18_seats) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "seats.h"
#include<bits/stdc++.h>
//copy template from bachbeo2007
using namespace std;
void give_initial_chart(int N, int M, std::vector<int> Rows, std::vector<int> Cols) {
}
int swap_seats(int a, int b) {
int x=p[a],y=p[b];
swap(p[a],p[b]);
}