結果
問題 | No.2493 K-th in L2 with L1 |
ユーザー | eve__fuyuki |
提出日時 | 2023-11-24 20:48:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,144 bytes |
コンパイル時間 | 2,274 ms |
コンパイル使用メモリ | 206,972 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 08:46:56 |
合計ジャッジ時間 | 2,842 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; void fast_io() { ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main() { fast_io(); int q; cin >> q; for (; q--;) { int d, k; cin >> d >> k; if (d == 0) { if (k == 1) { cout << "Yes\n"; cout << "0 0\n"; } else { cout << "No\n"; } continue; } if (k > 4 * d) { cout << "No\n"; continue; } vector<pair<int, int>> points; for (int x = -d; x <= d; x++) { points.push_back({x, d - abs(x)}); if (x != d && x != -d) { points.push_back({x, abs(x) - d}); } } sort(points.begin(), points.end(), [](const pair<int, int> &a, const pair<int, int> &b) { return a.first * a.first + a.second * a.second < b.first * b.first + b.second * b.second; }); cout << "Yes\n"; cout << points[k - 1].first << " " << points[k - 1].second << "\n"; } }