D,Equalize Them All CodeForces (贪心

参考:

    Equalize Them All CodeForces - 1144D (贪心) - Suprit_Young's blog - CSDN博客


题目:You are given an array aa consisting of nn integers. You can perform

the following operations arbitrary number of times (possibly, zero):

Choose

a pair of indices (i,j)(i,j) such

that |i−j|=1|i−j|=1 (indices ii and jj are adjacent) and

set ai:=ai+|ai−aj|ai:=ai+|ai−aj|;

Choose a pair of

indices (i,j)(i,j) such that |i−j|=1|i−j|=1 (indices ii and jj are

adjacent) and set ai:=ai−|ai−aj|ai:=ai−|ai−aj|.

The value |x||x| means the absolute value of xx. For example, |4|=4|4|=4, |−3|=3|−3|=3.

Your

task is to find the minimum number of operations required to obtain the

array of equal elements and print the order of operations to do it.

It is guaranteed that you always can obtain the array of equal elements using such operations.

Note that after each operation each element of the current array should not exceed 10181018 by absolute value.

Input

The first line of the input contains one integer nn (1≤n≤2⋅1051≤n≤2⋅105) — the number of elements in aa.

The

second line of the input

contains nn integers a1,a2,…,ana1,a2,…,an (0≤ai≤2⋅1050≤ai≤2⋅105),

where aiai is the ii-th element of aa.

Output

In the first line print one integer kk — the minimum number of operations required to obtain the array of equal elements.

In

the next kk lines print operations itself. The pp-th operation should

be printed as a triple of integers (tp,ip,jp)(tp,ip,jp), where tptp is

either 11 or 22 (11 means that you perform the operation of the first

type, and 22 means that you perform the operation of the second type),

and ipip and jpjp are indices of adjacent elements of the array such

that 1≤ip,jp≤n1≤ip,jp≤n, |ip−jp|=1|ip−jp|=1. See the examples for better

understanding.

Note that after each operation each element of the current array should not exceed 10181018 by absolute value.

If there are many possible answers, you can print any.

Examples

Input

5

2 4 6 6 6

Output

2

1 2 3

1 1 2

Input

3

2 8 10

Output

2

2 2 1

2 3 2

Input

4

1 1 1 1

Output

0

喵神的代码:(目前还看不懂。。。)

A.Diverse Strings+B.Parity Alternated Deletions+C. Two Shuffled Sequences+D. Equalize Them All - 菜鸡成长史 - CSDN博客

题意:两种操作,输出最少操作次数使得序列所有元素相同。操作一:选定相邻两个元素,较小的变成较大的元素;操作二:选定相邻元素,较大的变成较小的元素。

思路:显然把元素变成出现次数最多的数即可。

所用到的知识:栈STL之栈(stack)和队列(queue)的定义与基本用法 - 菜鸡成长史 - CSDN博客

#include <bits/stdc++.h>

using namespace std;

const int maxn = 200000+5;

struct p{

    int t,pos1,pos2;

}f;

int main()

{

    int n; scanf("%d",&n);

    int vis[maxn]={0},a[maxn],ma=0;

    for(int i=1;i<=n;i++){

        scanf("%d",&a[i]);

        vis[a[i]]++;

        if(vis[a[i]]>vis[a[ma]]) ma=i;

    }

    if(vis[a[ma]]==n) puts("0");

    else{

        queue <p> q;

        for(int i=ma;i>1;i--)

            if(a[i-1]<a[ma]){

                f.t=1,f.pos1=i-1,f.pos2=i;

                q.push(f);

            }

            else if(a[i-1]>a[ma]){

                f.t=2,f.pos1=i-1,f.pos2=i;

                q.push(f);

            }

        for(int i=ma+1;i<=n;i++)

            if(a[i]<a[ma]){

                f.t=1,f.pos1=i,f.pos2=i-1;

                q.push(f);

            }

            else if(a[i]>a[ma]){

                f.t=2,f.pos1=i,f.pos2=i-1;

                q.push(f);

            }

        printf("%d\n",q.size());

        while(!q.empty()){

            f=q.front(); q.pop();

            printf("%d %d %d",f.t,f.pos1,f.pos2);

        }

    }

    return 0;

}


网上找的博客的代码:(Equalize Them All CodeForces - 1144D (贪心) - Suprit_Young's blog - CSDN博客

题意:

给出N个数, 对任意相邻的两个数ai, aj有两种操作

set ai:=ai+|ai−aj|;

set ai:=ai−|ai−aj|.

求最少进行多少次操作, 可以使得所有数全部相等

题解:

CF题目的一贯套路, 仔细思考, 我们发现对于任意的两个数进行一次操作均可使其相等, 同时可以向左/向右传递.

这样一来使得所有数均为出现次数最多的数毫无疑问就是最优策略了

经验小结:

有了简易思路后, 别急着去模拟操作, 先仔细想想能不能通过构造等思维方法来直接演示状态

---------------------

作者:Suprit       原文:https://blog.csdn.net/a1097304791/article/details/89081637

#include <cstdio>

#include <iostream>

#include <algorithm>

#include <cstring>

#include <string>

#include <stdlib.h>

#include <vector>

#include <queue>

#include <cmath>

#include <stack>

#include <map>

#include <set>

using namespace std;

#define ms(x, n) memset(x,n,sizeof(x));

typedef  long long LL;

const int inf = 1<<30;

const LL maxn = 2*1e5+10;

int N, a[maxn];

map<int, int> ma; //该数出现的次数

int main()

{

    int tag = 0, pos = 0;

    cin >> N;

    for(int i = 1; i <= N; i++){

        cin >> a[i];;

        ++ma[a[i]];

        if(ma[a[i]] > tag)

            tag = ma[a[i]], pos = i;

    }

    cout << N-tag << endl;

    for(int i = pos-1; i > 0; i--){

        if(a[i]!=a[pos]){

            if(a[i]<a[pos]) printf("1 %d %d\n",i,i+1);

            else printf("2 %d %d\n",i,i+1);

        }

    }

    for(int i = pos+1; i <= N; i++){

        if(a[i]!=a[pos]){

            if(a[i]<a[pos]) printf("1 %d %d\n",i,i-1);

            else printf("2 %d %d\n",i,i-1);

        }

    }

return 0;//

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容