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
3623 - insule01
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!
== Cerinţa == Se dă '''n''' un număr natural. Într-un şir de lungime '''n''', format cu cifrele '''0''' şi '''1''', numim '''insulă''' o secvenţă maximă de cifre egale. Să se afle câte '''insule''' se află în toate şirurile de lungime '''n''', formate cu cifrele '''0''' şi '''1'''. == Date de intrare == Programul citește de la tastatură numărul '''n'''. == Date de ieșire == Programul va afișa pe ecran numărul '''insulelor''' care se află în toate şirurile de lungime '''n''', formate cu cifrele '''0''' şi '''1'''. Deoarece acest număr este prea mare, se va afişa modulo '''1.000.000.007'''. == Restricţii şi precizări == * '''1 ⩽ n ⩽ 1.000.000.000''' == Exemplul 1 == ; Intrare 2 ; Iesire Datele de intrare corespund restrictiilor impuse 6 == Exemplu 2 == ; Intrare 1000000001 ; Iesire Datele de intrare nu corespund restrictiilor impuse == Rezolvare == <syntaxhighlight lang="python" line> def compute_islands(n): mod = 1000000007 dp = [0] * (n+1) dp[1] = 2 dp[2] = 6 for i in range(3, n+1): dp[i] = (dp[i-1] * 2 + dp[i-2] * 2) % mod return dp[n] def main(): n = int(input()) if n > pow(10, 9): print("Datele de intrare nu corespund restrictiilor impuse") return islands = compute_islands(n) print("Datele de intrare corespund restrictiilor impuse") print(islands) if __name__ == "__main__": main() </syntaxhighlight> == Explicatie == Şirurile de lungime '''2''' formate cu cifrele '''0''' şi '''1''' sunt '''00''', '''01''', '''10''', '''11''', acestea conţinând '''1''', '''2''', '''2''', respectiv '''1''' insule. În total sunt '''6''' insule.
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