Codeforces Round #510 (Div. 2)(C)
https://www.cnblogs.com/violet-acmer/p/9682082.html
题意:
给你n个数,定义有两种操作
① 1 i j : (i != j) 将a[i]从数列中移除,且a[j] <- a[i]*a[j]
② 2 i : 将a[i]从数列中移除,此操作最多使用一次
注意:将数移除后剩余数的编号并未改变,依旧为初始时的输入顺序
在经过n-1次操作后使剩余的数最大
题解:
使用操作②的情况:
(1) : 数列中含有0
(2) : 负数个数为奇数个
n-1个操作的最终结果为负数个数为偶数个,数列中没有0元素(当然除去全是0元素这一情况)
踩坑:
如果此数列中有负数为奇数个,且含有0元素
处理方法:
(1)先将所有0元素通过操作①使其个数变为一个;
(2)在通过操作①用最大的负数乘以0,去除一个负数两两相乘后对结果贡献最小的负数,使负数个数为偶数个;
(3)通过②操作去除0元素
AC代码:
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int maxn=2e5+; int n;
int a[maxn];
int neg,zero,pos;
int pos0[maxn];
int posNeg;//the position of the max negative number
bool vis[maxn]; void Reader()
{
scanf("%d",&n);
neg=zero=pos=;
posNeg=;
memset(vis,false,sizeof vis);
for(int i=;i <= n;++i)
{
scanf("%d",a+i);
if(a[i] > )
pos++;
else if(a[i] < )
{
neg++;
posNeg=(posNeg == || a[i] > a[posNeg] ? i:posNeg);
}
else
{
zero++;
pos0[zero]=i;
}
}
}
void Process()
{
int ope=;//操作数
if(zero != )//跳出此if语句后 zero == 0 || zero == 1
{
while(zero != )
{
printf("1 %d %d\n",pos0[zero],pos0[zero-]);
vis[pos0[zero]]=true;
zero--;
ope++;
}
}
if(ope == n-)
return ;
if(neg&)//如果负数个数为奇数个,通过去除一个值最大的奇数或乘以0来使奇数个数变为偶数
{
if(zero == )//如果存在0,则让值最大的负数乘以0
{
printf("1 %d %d\n",posNeg,pos0[]);//posNeg与pos0[1]顺序不可颠倒
ope++;
neg--;
if(ope < n-)
{
printf("2 %d\n",pos0[]);
vis[pos0[]]=true;
ope++;
}
}
if(ope == n-)
return ;
if(neg&)//如果 zero == 0,则需要通过删除值最大的负数来使负数个数变为偶数
{
printf("2 %d\n",posNeg);
neg--;
ope++;
}
vis[posNeg]=true;
}
else if(zero == && ope < n-)
{
printf("2 %d\n",pos0[]);
vis[pos0[]]=true;
ope++;
}
if(ope == n-)
return ; int num[maxn];
int index=;
for(int i=;i <= n;++i)
if(vis[i] != true)
num[++index]=i;
for(int i=;i < index;++i)
printf("1 %d %d\n",num[i],num[i+]);
}
int main()
{
Reader();
Process();
}
Codeforces Round #510 (Div. 2)(C)的更多相关文章
- Codeforces Round #510 (Div. 2)
Codeforces Round #510 (Div. 2) https://codeforces.com/contest/1042 A 二分 #include<iostream> usi ...
- Codeforces Round #510 (Div. 2) D. Petya and Array(离散化+反向树状数组)
http://codeforces.com/contest/1042/problem/D 题意 给一个数组n个元素,求有多少个连续的子序列的和<t (1<=n<=200000,abs ...
- Codeforces Round #510 (Div. 2) B. Vitamins
B. Vitamins 题目链接:https://codeforces.com/contest/1042/problem/B 题意: 给出几种药,没种可能包含一种或多种(最多三种)维生素,现在问要吃到 ...
- Codeforces Round #510 (Div. 2) D. Petya and Array(树状数组)
D. Petya and Array 题目链接:https://codeforces.com/contest/1042/problem/D 题意: 给出n个数,问一共有多少个区间,满足区间和小于t. ...
- Codeforces Round #510 (Div. 2)(B)
传送门:Problem B https://www.cnblogs.com/violet-acmer/p/9682082.html 题意: 如果可以通过喝果汁将维生素A,B,C全部摄取,求最小花费,如 ...
- Codeforces Round #510 (Div. 2)(A)
传送门:Problem A https://www.cnblogs.com/violet-acmer/p/9682082.html 题意: 公园里有n个沙滩,a[i]表示第i个沙滩初始人数,现有m个人 ...
- codeforces 1042d//Petya and Array// Codeforces Round #510 (Div. 2)
题意:给出一个数组,求其中和小于t的区间数. 先计算前缀和数组sum[i].对当前的sum[i],查询树状数组中有几个比(sum[i]-t)大的数,那么用sum[i]减它就是一个合法区间.再将当前的s ...
- codeforces 1042c// Array Product// Codeforces Round #510(Div. 2)
题意:给出一个数组,2种操作:.1:x*y然后x消失,2:除掉x(2操作最多只能进行一次).问最大的结果的一种操作方式.逻辑题,看能不能想全面. 1先数好0,正,负的数量,zero,pos,neg.如 ...
- Codeforces Round #510 Div. 2 Virtual Participate记
这场打的顺手到不敢相信.如果不是vp的话估计肯定打不到这个成绩. A:最大显然,最小的话每次暴力给最小的+1. #include<iostream> #include<cstdio& ...
随机推荐
- 测试网站页面网速的一个简单Python脚本
无聊之余,下面分享一个Python小脚本:测试网站页面访问速度 [root@huanqiu ~]# vim pywww.py #!/usr/bin/python # coding: UTF-8 imp ...
- Being a (amateurish) team:团队开发体会
0x00 Being a (amateurish) team This is the process of changing hydrogen into breathable oxygen, and ...
- Linux内核分析 读书笔记 (第十八章)
第十八章 调试 18.1 准备开始 1. 需要的只是: 一个bug 一个藏匿bug的内核版本 相关内核代码的知识和运气 2. 在跟踪bug的时候,掌握的信息越多越好. 18.2 内核中的bug 1. ...
- Linux内核 实践二
实践二 内核模块编译 20135307 张嘉琪 一.实验原理 Linux模块是一些可以作为独立程序来编译的函数和数据类型的集合.之所以提供模块机制,是因为Linux本身是一个单内核.单内核由于所有内容 ...
- <构建之法>13——17章的读后感
第13章:软件测试 问题:对于这么多种的测试方法,怎么才能最有效的选取? 第14章:质量保证 问题:很多工程师都把大多数时间花在软件质量上.一成不变是无法创新的.如何在保证质量的情况下,又得到创新呢? ...
- 第二个spring,第三天
陈志棚:成绩的统筹 李天麟:界面音乐 徐侃:代码算法 给位组员继续的完成分配任务.
- Particle filter for visual tracking
Kalman Filter Cons: Kalman filtering is inadequate because it is based on the unimodal Gaussian dist ...
- QT下opencv的编译和使用
需要的文件 qt-opensource-windows-x86-mingw491_opengl-5.4.0.exe cmake-3.12.0-rc1-win64-x64.msi opencv-2.4. ...
- java collections - keyset() vs entrySet() in map
https://stackoverflow.com/questions/8962459/java-collections-keyset-vs-entryset-in-map http://blog.c ...
- 关于python requests 包跑ssl的设置 和 charles相关抓包的问题
由于在测试服务器上测试东西都是https,然后最近又在和大神一起开发openapi,api写好当然是要测试的 python上测试接口最好用的莫过于requests模块了.但是 我还从来没有用reque ...