답안 #934877

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
934877 2024-02-28T06:08:16 Z Halym2007 Roads (CEOI20_roads) C++11
0 / 100
1 ms 348 KB
#include <bits/stdc++.h>
using namespace std;
#define sz size()
#define pb push_back
#define ff first
#define ss second
int n, x_1, x_2, y_1, y_2;
vector <pair <int, int>> v;
int main () {
	cin >> n;
	for (int i = 1; i <= n; ++i) {
		cin >> x_1 >> y_1 >> x_2 >> y_2;
		assert (x_1 == y_2);
		v.pb ({x_1, min (y_1, y_2)});
	}
	sort (v.begin(), v.end());
	for (int i = 0; i < (int)v.sz - 1; ++i) {
		cout << v[i].ff << " " << v[i].ss << " " << v[i + 1].ff << " " << v[i + 1].ss << "\n";
	}
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -