Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168039 | Mino_XIE-谢文凯B班 | 双关键字排序 | C++ | 通过 | 100 | 435 MS | 1024 KB | 601 | 2024-08-19 22:00:30 |
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int n; cin >> n; vector<pair<int, int>> pairs(n); for (int i = 0; i < n; ++i) { cin >> pairs[i].first >> pairs[i].second; } sort(pairs.begin(), pairs.end(), [](const pair<int, int>& a, const pair<int, int>& b) { if (a.first != b.first) { return a.first < b.first; } return a.second < b.second; }); for (const auto& p : pairs) { cout << p.first << " " << p.second << endl; } return 0; }