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
2493 - Recc
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!
= Enunț = Ana Mia are o recurență liniară de forma <code>P[N] = A[1]*P[N-1] + A[2]*P[N-2] + A[3]*P[N-3] + A[4]*P[N-4]</code>, <code>N ≥ 5</code>. Studiind-o, îi vine o idee MAXIMĂ de problemă: “Pentru câte cvadriplete <code>(P[1], P[2], P[3], P[4])</code> din mulțimea numerelor naturale <code>[1, B]</code> valoarea <code>P[N]</code> modulo <code>K</code> are valoarea <code>X</code>?” = Cerința = Scrieți un program care citind <code>N</code>, <code>B</code>, <code>X</code>, <code>K</code>, și numerele <code>A[i], 1 ≤ i ≤ 4</code> rezolvă problema Anei. = Date de intrare = Fișierul de intrare <code>reccIN.txt</code> conține pe prima linie numerele <code>N</code>, <code>B</code>, <code>X</code>, <code>K</code>, separate printr-un spațiu, iar pe a doua linie <code>4</code> numere naturale separate prin spații, reprezentând numerele <code>A[i], 1 ≤ i ≤ 4</code>. = Date de ieșire = Fișierul de ieșire <code>reccOUT.txt</code> va conține pe prima linie numărul <code>ANS</code>, răspunsul problemei puse de Ana Mia. În cazul în care restricțiile nu sunt îndeplinite, se va afișa mesajul "Datele nu corespund restrictiilor impuse". = Restricții și precizări = * <code>5 ≤ N ≤ 10^18</code> * <code>1 ≤ B ≤ 1000</code> * <code>1 ≤ K ≤ 10^9</code> * <code>0 ≤ X < K</code> * numerele de pe a doua linie a fișierului de intrare vor fi mai mici decât <code>1.000.000.000</code> = Exemplul 1: = <code>reccIN.txt</code> 6 2 3 4 1 2 3 1 <code>reccOUT.txt</code> 2 === Explicație === Soluțiile sunt <code>(2, 1, 2, 1)</code> și <code>(2, 2, 2, 1)</code> == Exemplul 2: == <code>reccIN.txt</code> 6 2 5 4 1 2 3 1 <code>reccOUT.txt</code> Datele nu corespund restrictiilor impuse == Rezolvare == <syntaxhighlight lang="python" line="1"> class Matrice: def __init__(self): self.M = [[0] * 4 for _ in range(4)] def inmultire(A, B, K): C = Matrice() for i in range(4): for j in range(4): for k in range(4): C.M[i][j] = (C.M[i][j] + A.M[i][k] * B.M[k][j]) % K return C def putere(A, N, K): if N == 1: return A if N % 2 == 1: return inmultire(A, putere(A, N - 1, K), K) P = putere(A, N // 2, K) return inmultire(P, P, K) def verificare_restrictii(N, B, K, X): if not (5 <= N <= 10**18): return False if not (1 <= B <= 1000): return False if not (1 <= K <= 10**9): return False if not (0 <= X < K): return False return True def F(val, vs, vd, I): st, dr = 1, I while st <= dr: mij = (st + dr) // 2 if vs[mij] == val: return vd[mij] if vs[mij] < val: st = mij + 1 else: dr = mij - 1 return 0 def main(): with open("reccIN.txt", "r") as f: # Citim prima linie și împărțim valorile linia1 = f.readline().strip().split() N = int(linia1[0]) B = int(linia1[1]) X = int(linia1[2]) K = int(linia1[3]) if not verificare_restrictii(N, B, K, X): with open("reccOUT.txt", "w") as g: g.write("Datele nu corespund restrictiilor impuse\n") return # Citim a doua linie și împărțim valorile linia2 = f.readline().strip().split() A = [int(val) for val in linia2] C = Matrice() for i in range(4): C.M[3 - i][3] = A[i] % K for i in range(3): C.M[i + 1][i] = 1 C = putere(C, N - 4, K) for i in range(4): A[i] = C.M[i][3] vs = [] vd = [] I = 0 for i in range(1, B + 1): for j in range(1, B + 1): vs.append((A[0] * i % K + A[1] * j % K) % K) I += 1 vs.sort() vd = [0] * (I + 1) vd[0] = 1 II = 1 for i in range(1, I): if vs[II - 1] != vs[i]: vs[II] = vs[i] vd[II] = 1 II += 1 else: vd[II - 1] += 1 I = II sol = 0 for i in range(1, B + 1): for j in range(1, B + 1): v = (A[2] * i % K + A[3] * j % K) % K v = (X - v + K) % K sol += F(v, vs, vd, I) with open("reccOUT.txt", "w") as g: g.write(f"{sol}\n") if __name__ == "__main__": main() </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