Table of Contents
Level One-MountainRanges [Water Question]
Level Two-ShoppingSurveyDiv2【Math】
Level Three-SpecialStrings[Construction]
Home Web Front-end HTML Tutorial TopCoder SRM 634 Div.2[ABC]_html/css_WEB-ITnose

TopCoder SRM 634 Div.2[ABC]_html/css_WEB-ITnose

Jun 24, 2016 am 11:57 AM
abc

TopCoder SRM 634 Div.2[ABC]

ACM

Question address: TopCoder SRM 634

I did it after the game. I feel like I can’t make Orz on site. There simply can’t be more. explain.

Level One-MountainRanges [Water Question]

Meaning of the question:
Asking how many peaks in the sequence are completely larger than the ones next to them.

Analysis:
Silly question, not much to say.

Code:

/**  Author:      illuz <iilluzen[at]gmail.com>*  File:        one.cpp*  Create Date: 2014-09-26 21:01:23*  Descripton:   */#include <cstdio>#include <vector>#include <cstring>#include <iostream>#include <algorithm>using namespace std;#define repf(i,a,b) for(int i=(a);i<=(b);i++)typedef long long ll;const int N = 0;class MountainRanges {public:	int countPeaks(vector<int> h) {		int ret = 0, sz = h.size();		if (sz == 1) {			return 1;		}		if (sz == 2) {			return h[0] != h[1];		}		if (h[0] > h[1])			ret++;		if (h[sz - 1] > h[sz - 2])			ret++;		// cout << sz << ' ' << ret;		repf (i, 1, sz - 2) {			if (h[i] > h[i - 1] && h[i] > h[i + 1])				ret++, i++;		}		return ret;	}};int main() {	// ios_base::sync_with_stdio(0);	MountainRanges a;	int n, t;	vector<int> v;	cin >> n;	while (n--) {		cin >> t;		v.push_back(t);	}	cout << a.countPeaks(v) << endl;	return 0;}
Copy after login


Level Two-ShoppingSurveyDiv2【Math】

Question meaning:
You are doing a survey. A total of N people participated in the survey. You got a survey result, which is how many people bought each item.
Now you only have this survey result, that is: s[i] people have bought the i-th item.
Asking you how many people at least have bought everything.

Analysis:

We can consider how many people bought something that no one bought, that is, everything should have been bought by N people, and no one bought it is sum(N - s[i ]).
At this time, we can distribute these things to everyone as much as possible, then the remaining people will have no choice but to buy them all, which is the minimum. If there are enough points (N >= sum(N - s[i])), then everyone may not have bought everything.

Code:

/**  Author:      illuz <iilluzen[at]gmail.com>*  File:        two.cpp*  Create Date: 2014-09-26 22:36:58*  Descripton:   */#include <cstdio>#include <vector>#include <cstring>#include <iostream>#include <algorithm>using namespace std;#define repf(i,a,b) for(int i=(a);i<=(b);i++)typedef long long ll;const int N = 0;class ShoppingSurveyDiv2 {public:	int minValue(int N, vector<int> s) {		int sz = s.size(), sum = 0;		repf (i, 0, sz - 1) sum += s[i];		int t = N - (N * sz - sum);		if (t < 0) t = 0;		return t;	}};int main() {	// ios_base::sync_with_stdio(0);	int n, m, t;	vector<int> v;	cin >> n >> m;	repf (i, 0, m - 1) {		cin >> t;		v.push_back(t);	}	ShoppingSurveyDiv2 a;	cout << a.minValue(n, v);	return 0;}
Copy after login


Level Three-SpecialStrings[Construction]

Meaning of the question:
Set a special string
1. 01 string
2. Divide it into two front and rear strings from any position, the front one is always smaller than the back one in lexicographic order .

Now given a string that is guaranteed to be special, ask you what is the next string of the same length in lexicographic order. If it is the last one, it will return empty.

Analysis:

Obviously, this string must be the next one in dictionary order, that is, this 01 string needs to be carried, so we give it 1 first, that is, change the last 0 becomes 1, and all subsequent values ​​become X to indicate unknown.
Taking 01101111011110111 as an example, after the change, it becomes 01101111011111XXX.

Can putting all 0s at the end meet condition 2? Obviously it can't

Let's consider the front part of the modification point first.
Since the part before modification has strictly complied with condition 2, and the original position of 0 has been changed to 1, so: if the previous position is used as the dividing point, the second half of the string will become larger than the original one. , so the front part does not need to be changed.

The main problem is in the latter part. We have changed the point to the dividing point. If we still follow the example just now, the strings before and after will become 01101111011111 and XXX.
Then the following X string will be larger than the previous one. Since it is the next dictionary order, the X string can directly copy the front part, and then 1 will do.

How to prove that this string can also meet condition 2 when the split point is at the back? Obviously, since the back part is a complete copy of the previous 1, the split point at the back is the same as the split point at the back. , the first one is guaranteed to meet condition 2, so there will definitely be no problem later. Just think about it and you’ll understand.

In this way, the string is found.

Code:

/**  Author:      illuz <iilluzen[at]gmail.com>*  File:        three.cpp*  Create Date: 2014-09-26 21:57:10*  Descripton:   */#include <cstdio>#include <cstring>#include <iostream>#include <algorithm>using namespace std;#define repf(i,a,b) for(int i=(a);i<=(b);i++)typedef long long ll;const int N = 0;class SpecialStrings {public:	string findNext(string s) {		int len = s.length(), pos = 0;		for (int i = len - 1; i >= 0; i--) {			if (s[i] == '0') {				pos = i;				break;			}		}		if (pos == 0)			return "";		s[pos] = '1';		repf (i, pos + 1, len - 1)			s[i] = s[i - pos - 1];		for (int i = len - 1; i >= 0; i--) {			if (s[i] == '0') {				s[i] = '1';				return s;			}		}	}};int main() {	// ios_base::sync_with_stdio(0);	SpecialStrings a;	string s;	cin >> s;	cout << a.findNext(s) << endl;	return 0;}
Copy after login



Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles