Löse ABC160-E mit Python

Einführung

Ich möchte in der Lage sein, das grüne Diff zu lösen, also werde ich das grüne Diff lösen, das lösbar zu sein scheint.

Red and Green Apples

Rote Äpfel essen bis zu $ X $ und grüne Äpfel essen bis zu $ Y $, also essen Sie nur $ X, Y $, bevor Sie $ p, q $ in absteigender Reihenfolge setzen. .. Farblose Äpfel können in beiden Farben vorliegen. Verbinden Sie also $ p [: X], q [: Y], r $ und ordnen Sie sie in absteigender Reihenfolge an. Die Antwort ist die Summe von der Vorderseite der verketteten Liste zu $ X + Y $. Außerdem lautet die Sortierung für die Python-Liste $ O (N log N) $, sodass sie tolerierbar ist.

x, y, a, b, c = map(int,input().split())
p = list(map(int,input().split()))
q = list(map(int,input().split()))
r = list(map(int,input().split()))

p.sort(reverse=True)
q.sort(reverse=True)
p = p[:x]
q = q[:y]
apple = p + q + r
apple.sort(reverse=True)
ans = sum(apple[:x+y])
print(ans)

Zusammenfassung

Ich möchte grün sein. wir sehen uns.

Recommended Posts

Löse ABC160-E mit Python
Löse ABC146-C mit Python
Löse ABC098-C in Python
Löse ABC159-D in Python
Löse Wooldridge-Übungen in Python
Löse ABC175 D in Python
Lösen Sie Optimierungsprobleme mit Python
Löse den Atcoder ABC169 A-D mit Python
Löse ABC036 A ~ C mit Python
Löse ABC037 A ~ C mit Python
Lösen Sie normale Differentialgleichungen in Python
Quadtree in Python --2
Python in der Optimierung
Metaprogrammierung mit Python
Python 3.3 mit Anaconda
Geokodierung in Python
SendKeys in Python
Metaanalyse in Python
Unittest in Python
Epoche in Python
Zwietracht in Python
Deutsch in Python
nCr in Python
N-Gramm in Python
Programmieren mit Python
Plink in Python
FizzBuzz in Python
SQLite in Python
LINE-Bot [0] in Python
CSV in Python
Reverse Assembler mit Python
Konstante in Python
nCr in Python.
Format in Python
Scons in Python 3
Puyopuyo in Python
Python in Virtualenv
PPAP in Python
Quad-Tree in Python
Reflexion in Python
Chemie mit Python
Hashbar in Python
DirectLiNGAM in Python
LiNGAM in Python
In Python reduzieren
In Python flach drücken
ABC 157 D - Lösungsvorschläge für Freunde in Python!
Ich wollte ABC159 mit Python lösen
Löse ABC165 A, B, D mit Python
Lösen Sie das maximale Subarray-Problem in Python
Sortierte Liste in Python
Täglicher AtCoder # 36 mit Python
AtCoder # 2 jeden Tag mit Python
Täglicher AtCoder # 32 in Python
Täglicher AtCoder # 18 in Python
Singleton-Muster in Python
Dateioperationen in Python
Tastenanschlag in Python