usaco2.1.3 Sorting a Three-Valued Sequence

本文介绍了一种专门针对仅有三个不同键值(1、2、3)的特殊序列排序问题,通过交换操作达到非递减排序的目标,并提供了一个C++实现示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一 原题

Sorting a Three-Valued Sequence 
IOI'96 - Day 2

Sorting is one of the most frequently performed computational tasks. Consider the special sorting problem in which the records to be sorted have at most three different key values. This happens for instance when we sort medalists of a competition according to medal value, that is, gold medalists come first, followed by silver, and bronze medalists come last.

In this task the possible key values are the integers 1, 2 and 3. The required sorting order is non-decreasing. However, sorting has to be accomplished by a sequence of exchange operations. An exchange operation, defined by two position numbers p and q, exchanges the elements in positions p and q.

You are given a sequence of key values. Write a program that computes the minimal number of exchange operations that are necessary to make the sequence sorted.

PROGRAM NAME: sort3

INPUT FORMAT

Line 1:N (1 <= N <= 1000), the number of records to be sorted
Lines 2-N+1:A single integer from the set {1, 2, 3}

SAMPLE INPUT (file sort3.in)

9
2
2
1
3
3
3
2
3
1

OUTPUT FORMAT

A single line containing the number of exchanges required

SAMPLE OUTPUT (file sort3.out)

4


二 分析

数列中只有1,2,3三种数字.可以知道排序结果中哪一段全是1,哪一段是2,3...对于出现在应该是1位置的2,保证优先与应该是2位置的1先交换就可以了.


三 代码

运行结果:
USER: Qi Shen [maxkibb3]
TASK: sort3
LANG: C++

Compiling...
Compile: OK

Executing...
   Test 1: TEST OK [0.000 secs, 4184 KB]
   Test 2: TEST OK [0.000 secs, 4184 KB]
   Test 3: TEST OK [0.000 secs, 4184 KB]
   Test 4: TEST OK [0.000 secs, 4184 KB]
   Test 5: TEST OK [0.000 secs, 4184 KB]
   Test 6: TEST OK [0.000 secs, 4184 KB]
   Test 7: TEST OK [0.000 secs, 4184 KB]
   Test 8: TEST OK [0.000 secs, 4184 KB]

All tests OK.

Your program ('sort3') produced all correct answers! This is your submission #2 for this problem. Congratulations!


AC代码:
/*
ID:maxkibb3
LANG:C++
PROG:sort3
*/

#include<cstdio>

int n;
int a[1005];
int cnt[3];
int b[3][3];

int max(int a, int b) {
    return (a<b)?b:a;
}

int main() {
    freopen("sort3.in", "r", stdin);
    freopen("sort3.out", "w", stdout);
    scanf("%d", &n);
    for(int i = 0; i < n; i++) {
        scanf("%d", &a[i]);
        cnt[a[i] - 1]++;
    }
    for(int i = 0; i < cnt[0]; i++) {
        b[0][a[i] - 1]++;
    }
    for(int i = cnt[0]; i < cnt[0] + cnt[1]; i++) {
        b[1][a[i] - 1]++;
    }
    for(int i = cnt[0] + cnt[1]; i < n; i++) {
        b[2][a[i] - 1]++;
    }
    int ans = b[0][1] + b[0][2] + 
              b[1][2] + max(b[1][0], b[0][1]) - b[0][1];
    printf("%d\n", ans);  
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值