結果
| 問題 | No.3477 Yet Another LIS Triangle |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-03-20 22:39:23 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 14 ms / 2,000 ms |
| コード長 | 890 bytes |
| 記録 | |
| コンパイル時間 | 2,179 ms |
| コンパイル使用メモリ | 331,996 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-03-20 22:39:27 |
| 合計ジャッジ時間 | 3,934 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int q;
cin >> q;
while (q--) {
int n, k;
cin >> n >> k;
if (n == 2 or k <= 1 or k == n) {
cout << "No" << "\n";
continue;
}
cout << "Yes" << "\n";
int tmp1 = 3 * n - 3;
int tmp2 = 4;
for (int i = 0; i < 3; i++) {
cout << i + 1;
int uo = k - 2;
for (int j = 0; j < n - 2; j++) {
if (uo > 0) {
cout << " " << tmp2;
tmp2 += 1;
uo -= 1;
} else {
cout << " " << tmp1;
tmp1 -= 1;
}
}
cout << " " << (i == 2 ? 1 : i + 2) << "\n";
}
}
}