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>* 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 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 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 <br> <br> <p></p> <p class="sycode"> </p> <h2 id="Level-Two-ShoppingSurveyDiv-Math"> Level Two-ShoppingSurveyDiv2【Math】</h2> <p> Question meaning: <br> 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. <br> Now you only have this survey result, that is: s[i] people have bought the i-th item. <br> Asking you how many people at least have bought everything. </p> <p> Analysis: </p> <p> 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 ]). <br> 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. </p> <p> Code: </p> <p> </p> <pre name="code" class="sycode">/** Author: illuz <iilluzen>* 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 s) { int sz = s.size(), sum = 0; repf (i, 0, sz - 1) sum += s[i]; int t = N - (N * sz - sum); if (t v; cin >> n >> m; repf (i, 0, m - 1) { cin >> t; v.push_back(t); } ShoppingSurveyDiv2 a; cout <br> <br> <p></p> <p class="sycode"> </p> <h2 id="Level-Three-SpecialStrings-Construction"> Level Three-SpecialStrings[Construction]</h2> <p> Meaning of the question: <br> Set a special string <br> 1. 01 string <br> 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 . </p> <p> 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. </p> <p> Analysis: </p> <p> 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. <br> Taking 01101111011110111 as an example, after the change, it becomes 01101111011111XXX. </p> <p> Can putting all 0s at the end meet condition 2? Obviously it can't </p> <p> Let's consider the front part of the modification point first. <br> 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. </p> <p> 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. <br> 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. </p> <p> 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. </p> <p> In this way, the string is found. </p> <p> Code: </p> <p> </p> <pre name="code" class="sycode">/** Author: illuz <iilluzen>* 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= 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 <br> <br> <p></p> <p class="sycode"> <br> </p> </algorithm></iostream></cstring></cstdio></iilluzen>

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

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

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

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

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

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

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.

This article explains the HTML5 <time> 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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
