Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168167 | 徐启善(C班) | 双关键字排序 | C++ | 通过 | 100 | 425 MS | 1056 KB | 579 | 2024-08-19 23:17:48 |
#include <bits/stdc++.h> using namespace std; bool cmp(pair<int, int> a, pair<int, int> b) { if (a.first != b.first) { return a.first < b.first; } return a.second < b.second; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n; cin >> n; vector<pair<int, int>> p(n); for (int i = 0; i < n; ++i) { cin >> p[i].first >> p[i].second; } sort(p.begin(), p.end(), cmp); for (const auto& p : p) { cout << p.first << " " << p.second << endl; } return 0; }