結果
| 問題 |
No.1571 All Your Cycles Are Same Lengths
|
| コンテスト | |
| ユーザー |
risujiroh
|
| 提出日時 | 2021-06-27 13:21:48 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 588 bytes |
| コンパイル時間 | 1,662 ms |
| コンパイル使用メモリ | 192,612 KB |
| 最終ジャッジ日時 | 2025-01-22 13:59:43 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
int main() {
using namespace std;
cin.tie(nullptr)->sync_with_stdio(false);
int tt;
cin >> tt;
while (tt--) {
int n, target;
cin >> n >> target;
[&] {
for (int x = 0; x <= 100; ++x)
for (int y = 0; y <= 100; ++y)
if (2 * x + (n - 2) * y == target) {
cout << "Yes\n";
for (int i = 1; i < n; ++i)
for (int j = i + 1; j <= n; ++j) cout << i << ' ' << j << ' ' << (i == 1 ? x : y) << '\n';
return;
}
cout << "No\n";
}();
}
}
risujiroh