Codeforces Round #768 (Div. 2) C. And Matching
2022/1/29 6:06:40
本文主要是介绍Codeforces Round #768 (Div. 2) C. And Matching,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
思路:
如果k不为n-1的话,就把k和n-1配,0和n-1-k配,其他相加为n-1就配一对
如果为n-1的话就把后四组和前四组单独配一下,其他相加为n-1配一对,尽量不要打乱中间的配对
Code
#include <bits/stdc++.h> // #define DEBUG freopen("_in.txt", "r", stdin); #define DEBUG freopen("_in.txt", "r", stdin), freopen("_out.txt", "w", stdout); typedef long long ll; using namespace std; const ll INF = 0x3f3f3f3f3f3f3f3f; const ll maxn = 1e6 + 10; const ll maxm = 1e7 + 10; const ll mod = 1e9 + 7; const double pi = acos(-1); const double eps = 1e-8; ll T, n, k; ll arr[maxn], brr[maxn]; int main() { // DEBUG; // printf("%lf",pow(2,16)); scanf("%lld", &T); while (T--) { scanf("%lld%lld", &n, &k); if (k == n - 1) { if (n == 4) printf("-1\n"); else { printf("%lld %lld\n", n-2, n - 1); printf("0 2\n"); printf("1 %lld\n", n-3); printf("3 %lld\n", n-4); for (ll i = 4; i < n / 2; i++) { printf("%lld %lld\n", i, n - 1 - i); } } continue; } printf("%lld %lld\n", k, n - 1); if (k != 0) printf("0 %lld\n", n - 1 - k); for (ll i = 0; i < n / 2; i++) { if (i != k && i != 0 && i != n - 1 - k && i != n - 1 && n - 1 - i != k && n - 1 - i != 0 && n - 1 - i != n - 1 - k && n - 1 - i != n - 1) { printf("%lld %lld\n", i, n - 1 - i); } } // printf("\n"); } return 0; }
这篇关于Codeforces Round #768 (Div. 2) C. And Matching的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-13Slicm 框架怎么进行用户认证?-icode9专业技术文章分享
- 2024-11-13在查询时将 map_coord 列的值转换为字符串有哪些方法?-icode9专业技术文章分享
- 2024-11-13如何将微信地区改成自定义文案?-icode9专业技术文章分享
- 2024-11-13DNS 缓存存在问题有哪些症状和解决方法?-icode9专业技术文章分享
- 2024-11-13HTTP 状态码(405)-Method Not Allowed是什么意思?-icode9专业技术文章分享
- 2024-11-13HTTP 状态码(500)-Internal Server Error是什么意思?-icode9专业技术文章分享
- 2024-11-13在 Element UI 中无法修改 $confirm 的取消按钮文字是什么原因?-icode9专业技术文章分享
- 2024-11-13unity XR是什么?-icode9专业技术文章分享
- 2024-11-13伴随矩阵是什么?-icode9专业技术文章分享
- 2024-11-13怎么使用grep -E 来查找匹配最后 2 条数据?-icode9专业技术文章分享