Skip to main content
  1. Posts/

codeforces #345 div 2 B. Beautiful Paintings (暴力)

·1 min
Note: This article is available in Chinese only. 本文暂无英文版本。 View original

题目链接 题意:给出一个数列,按照最好的策略排序使得a[i+1]>a[i]的对数尽可能多,问最多的对数是多少。 思路:类似计数排序?

 1/* ***********************************************
 2Author :111qqz
 3Created Time :2016年03月07日 星期一 17时06分48秒
 4File Name :code/cf/#345/B.cpp
 5************************************************ */
 6
 7#include <cstdio>
 8#include <cstring>
 9#include <iostream>
10#include <algorithm>
11#include <vector>
12#include <queue>
13#include <set>
14#include <map>
15#include <string>
16#include <cmath>
17#include <cstdlib>
18#include <ctime>
19#define fst first
20#define sec second
21#define lson l,m,rt<<1
22#define rson m+1,r,rt<<1|1
23#define ms(a,x) memset(a,x,sizeof(a))
24typedef long long LL;
25#define pi pair < int ,int >
26#define MP make_pair
27
28using namespace std;
29const double eps = 1E-8;
30const int dx4[4]={1,0,0,-1};
31const int dy4[4]={0,-1,1,0};
32const int inf = 0x3f3f3f3f;
33const int N=1E3+7;
34int n ;
35int a[N];
36int cnt[N];
37int num[N];
38int sum[N];
39int main()
40{
41	#ifndef  ONLINE_JUDGE
42	freopen("code/in.txt","r",stdin);
43  #endif
44
45    cin>>n;
46    ms(cnt,0);
47    ms(num,0);
48    ms(sum,0);
49    for ( int i = 1 ; i <= n ; i++)
50    {
51	cin>>a[i];
52	cnt[a[i]]++;
53    }
54    if (n==1)
55    {
56	puts("0");
57	return 0 ;
58    }
59    if (n==2)
60    {
61	if (a[1]==a[2])
62	{
63	    puts("0");
64	}
65	else
66	{
67	    puts("1");
68	}
69	return 0;
70    }
71
72    int mx = -1;
73    for ( int i = 1 ; i <= 1000 ; i++)
74    {
75	num[cnt[i]]++;
76	mx = max(mx,cnt[i]);
77    }
78
79    for ( int i = mx ; i >= 1 ; i --)
80    {
81	sum[i] = sum[i+1]+num[i];
82    }
83
84    int ans = 0 ;
85    for ( int i = 1 ; i <= mx ; i++)
86    {
87	ans +=sum[i]-1;
88//	cout<<"sum[i]:"<<sum[i]<<endl;
89    }
90    cout<<ans<<endl;
91
92
93
94  #ifndef ONLINE_JUDGE
95  fclose(stdin);
96  #endif
97    return 0;
98}

Related

codeforces #341 div2 A. Die Roll

·1 min
http://codeforces.com/contest/621/problem/A A. Wet Shark and Odd and Even time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Today, Wet Shark is given n integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark.

codeforces #341 div 2 B. Wet Shark and Bishops

·2 mins
http://codeforces.com/contest/621/problem/B B. Wet Shark and Bishops time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Today, Wet Shark is given n bishops on a 1000 by 1000 grid. Both rows and columns of the grid are numbered from 1 to 1000. Rows are numbered from top to bottom, while columns are numbered from left to right.

uva 120 Stacks of Flapjacks

·2 mins
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid;=8&page;=show_problem&problem;=56 题意:给出一个长度为n的序列(无重复元素),询问经过多少次flip(i)操作,使得序列升序排列。定义flip(i)为将1到n-i+1的元素反转… 思路:先离散化,然后注意读入….

codeforces 27 C. Unordered Subsequence

·2 mins
http://codeforces.com/contest/27/problem/C 题意:给出一个序列,问是否存在一个disordered的子序列。。输出长度并输出组成子序列的下表(1..n)。如果有多组,输出任意一组。 disordered的意思是。。升序或者降序(不严格也可以)之外的情况。 思路: 首先我们可以知道,我们要找的子序列至少需要三个点。因为两个点怎么看都是有序的。而如果有k个点(k>3)组成的子序列存在。。那么机智得去掉其中一些点,可以只剩三个 ,同样满足题意。所以我们只需要找到三个点即可。如果把点以下标为横坐标,值为纵坐标花在坐标系上,就是找一个v型或者倒v型的三个点。