# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
420905 | 2021-06-08T14:46:00 Z | HappyPacMan | MalnaRISC (COI21_malnarisc) | C++14 | 1 ms | 332 KB |
#include <bits/stdc++.h> using namespace std; using vi = vector<int>; vector<pair<int,int> > res; vi merge(vi a,vi b){ if(a.size() > b.size()) swap(a,b); for(int i=0;i<a.size();i++){ for(int j=i-1;j>0;j--){ res.emplace_back(b[j-1],b[j]); } res.emplace_back(a[i],b[0]); } for(int u : b) a.push_back(u); return a; } int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; queue<vi> q; for(int i=0;i<n;i++){ vi nw = {i+1}; q.push(nw); } while(q.size() > 1){ auto u = q.front(); q.pop(); auto v = q.front(); q.pop(); q.push(merge(u,v)); } cout << res.size() << '\n'; for(auto u : res){ cout << "CMPSWP R" << u.first << " R" << u.second << '\n'; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 204 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 204 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 332 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 332 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 332 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 332 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 332 KB | not sorted |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 332 KB | not sorted |