分治,CF 1237C2 - Balanced Removals (Harder)

2024-08-28 01:44

本文主要是介绍分治,CF 1237C2 - Balanced Removals (Harder),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

目录

一、题目

1、题目描述

2、输入输出

2.1输入

2.2输出

3、原题链接

二、解题报告

1、思路分析

2、复杂度

3、代码详解


一、题目

1、题目描述

2、输入输出

2.1输入

2.2输出

3、原题链接

https://codeforces.com/problemset/problem/1237/C2


二、解题报告

1、思路分析

考虑问题是一维:按照坐标非降排序,两个两个拿

考虑问题是二维:按照第一维坐标非降排序,按第一维分组,组内按照第二维排序,就变成了一维的问题

问题是三维:类似处理即可

2、复杂度

时间复杂度: O(NlogN)空间复杂度:O(N)

3、代码详解

 ​
#include <bits/stdc++.h>using i64 = long long;
using i32 = unsigned int;
using u64 = unsigned long long;
using i128 = __int128;constexpr int inf32 = 1E9 + 7;
constexpr i64 inf64 = 1E18 + 7;
constexpr int P = 998'244'353;void solve() {int n;std::cin >> n;std::vector<std::tuple<int, int, int, int>> points(n);for (int i = 0, a, b, c; i < n; ++ i)std::cin >> a >> b >> c, points[i] = { a, b, c, i + 1 };std::vector<int> buf2, buf3;auto help1 = [&](int l, int r) -> void{std::sort(points.begin() + l, points.begin() + r + 1, [](auto &x, auto &y) -> bool {return std::get<2>(x) < std::get<2>(y);});for (int i = l; i < r; i += 2)std::cout << std::get<3>(points[i]) << ' ' << std::get<3>(points[i + 1]) << '\n';if ((r - l + 1) & 1) {buf2.push_back(std::get<3>(points[r]));}};auto help2 = [&](int l, int r) -> void{buf2.clear();std::sort(points.begin() + l, points.begin() + r + 1, [](auto &x, auto &y) -> bool {return std::get<1>(x) < std::get<1>(y);});for (int i = l, j; i <= r; ) {j = i;while (j <= r && std::get<1>(points[j]) == std::get<1>(points[i]))++ j;	help1(i, j - 1);i = j;}for (int i = 0; i + 1 < buf2.size(); i += 2)std::cout << buf2[i] << ' ' << buf2[i + 1] << "\n";if ((r - l + 1) & 1)buf3.push_back(buf2.back());};std::ranges::sort(points);for (int i = 0, j; i < n; ) {j = i;while (j < n && std::get<0>(points[j]) == std::get<0>(points[i]))++ j;help2(i, j - 1);i = j;}for (int i = 0; i < buf3.size(); i += 2)std::cout << buf3[i] << ' ' << buf3[i + 1] << '\n';
}auto FIO = []{std::ios::sync_with_stdio(false);std::cin.tie(nullptr);std::cout.tie(nullptr);return 0;
}();int main () {#ifdef DEBUGfreopen("in.txt", "r", stdin);freopen("out.txt", "w", stdout);#endifint T = 1;// std::cin >> T;while (T --) {solve();}return 0;
}

这篇关于分治,CF 1237C2 - Balanced Removals (Harder)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1113380

相关文章

Codeforces Round #240 (Div. 2) E分治算法探究1

Codeforces Round #240 (Div. 2) E  http://codeforces.com/contest/415/problem/E 2^n个数,每次操作将其分成2^q份,对于每一份内部的数进行翻转(逆序),每次操作完后输出操作后新序列的逆序对数。 图一:  划分子问题。 图二: 分而治之,=>  合并 。 图三: 回溯:

cf 164 C 费用流

给你n个任务,k个机器,n个任务的起始时间,持续时间,完成任务的获利 每个机器可以完成任何一项任务,但是同一时刻只能完成一项任务,一旦某台机器在完成某项任务时,直到任务结束,这台机器都不能去做其他任务 最后问你当获利最大时,应该安排那些机器工作,即输出方案 具体建图方法: 新建源汇S T‘ 对任务按照起始时间s按升序排序 拆点: u 向 u'连一条边 容量为 1 费用为 -c,

CF 508C

点击打开链接 import java.util.Arrays;import java.util.Scanner;public class Main {public static void main(String [] args){new Solve().run() ;} }class Solve{int bit[] = new int[608] ;int l

【CF】C. Glass Carving(二分 + 树状数组 + 优先队列 + 数组计数)

这题简直蛋疼死。。。。。 A了一下午 #include<cstdio>#include<queue>#include<cstring>#include<algorithm>using namespace std;typedef long long LL;const int maxn = 200005;int h,w,n;int C1[maxn],C2[maxn];int

【CF】E. Anya and Cubes(双向DFS)

根据题意的话每次递归分3种情况 一共最多25个数,时间复杂度为3^25,太大了 我们可以分2次求解第一次求一半的结果,也就是25/2 = 12,记录结果 之后利用剩余的一半求结果 s-结果 = 之前记录过的结果 就可以 时间复杂度降低为 3 ^ (n/2+1) 题目链接:http://codeforces.com/contest/525/problem/E #include<set

【CF】D. Arthur and Walls(BFS + 贪心)

D题 解题思路就是每次检查2X2的方格里是否只有一个‘*’,如果有的话这个*就需要变成‘.’,利用BFS进行遍历,入队的要求是这个点为. 一开始将所有的'.'全部加入队列,如果碰到一个'*'变成'.'就入队,判断的时候从4个方向就行判断 题目链接:http://codeforces.com/contest/525/problem/D #include<cstdio>#include<

CF#271 (Div. 2) D.(dp)

D. Flowers time limit per test 1.5 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/474/problem/D We s

CF Bayan 2015 Contest Warm Up B.(dfs+暴力)

B. Strongly Connected City time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/probl

CF Bayan 2015 Contest Warm Up A.(模拟+预处理)

A. Bayan Bus time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/problem/A The fi