# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
335235 | ronnith | Konstrukcija (COCI20_konstrukcija) | C++14 | 1 ms | 364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
typedef long long ll;
#define sz(a) int((a).size())
#define trav(a, b) for(auto a : b)
#define mk make_pair
#define f first
#define s second
#define pb push_back
using namespace std;
vector<pair<int, int>> edge;
int cnt = 2;
int main(){
// ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
ll k;scanf("%lld", &k);
// cerr << k << '\n';
for(int i = 0;i < k;i ++){
edge.pb(mk(1,++cnt));
edge.pb(mk(cnt, 2));
}
// cerr << "yes";
printf("%d %d\n", cnt, sz(edge));
trav(e, edge){
if(e.f == 2)e.f = cnt;
else if(e.f == cnt)e.f = 2;
if(e.s == 2)e.s = cnt;
else if(e.s == cnt)e.s = 2;
printf("%d %d\n", e.f, e.s);
}
return 0;
}
컴파일 시 표준 에러 (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... |