Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Bitnami MediaWiki
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
3647 - secvente4
(section)
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
= Restricții și precizări = * <code>2 ≤ n ≤ 1.000.000</code> * <code>2 * t ≤ n</code> == Exemplul 1 == input.txt: 7 2 1010101 output.txt: 2 Explicație: Elementul de pe poziția <code>1</code> se interschimbă cu elementul de pe poziția <code>6</code>, iar elementul de pe poziția <code>3</code> se interschimbă cu elementul de pe poziția <code>4</code>. == Exemplul 2 == input.txt: 26 3 00010100100100010111001001 output.txt: 1 Explicație: O secvență convenabilă se situează între pozițiile <code>4</code> și <code>6</code> și alta între pozițiile <code>18</code> și <code>20</code>. Este nevoie de o singură interschimbare pentru a pune un element de <code>1</code> pe poziția <code>5</code>. == Exemplul 3 == input.txt: 9999999999999999 3 00010100100100010111001001 Output: Input-ul nu convine conditiilor == Rezolvare == <syntaxhighlight lang="python3" line="1"> def verificare(n,t): if not(2<=n<=1000000): print("Input-ul nu convine conditiilor") exit() if not(2*t<=n): print("Input-ul nu convine conditiilor") exit() with open("input.txt", "r") as f, open("output.txt", "w") as g: n, k = map(str, f.readline().split()) s = f.readline() n = int(n) k = int(k) verificare(n,k) v = [int(ch) for ch in s] st = [0] * (n + 1) dr = [0] * (n + 1) sum_value = sum(v) if sum_value < 2 * k: g.write("-1") exit() sum_value = 0 for i in range(1, n + 1): sum_value += v[i - 1] if i - k >= 1: sum_value -= v[i - k - 1] st[i] = max(sum_value, st[i - 1]) if i == k: st[i] = sum_value sum_value = 0 for i in range(n, 0, -1): sum_value += v[i - 1] if i + k <= n: sum_value -= v[i + k - 1] dr[i] = max(sum_value, dr[i + 1]) if i == n - k + 1: dr[i] = sum_value sol = 2e9 for i in range(k, n - k + 1): sol = min(sol, 2 * k - st[i] - dr[i + 1]) g.write(str(sol)) </syntaxhighlight>
Summary:
Please note that all contributions to Bitnami MediaWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Bitnami MediaWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Toggle limited content width