[PYTHON] Kombinationsoptimierung - typisches Problem - Kombinationsauktionsproblem

Typisches Problem und Ausführungsmethode

Kombinationsauktionsproblem

$ n $ Kandidaten (Teilmenge $ S_j (\ subseteq M), j \ in N = \ {1, \ Punkte, n \ der Menge $ M = \ {1, \ Punkte, m \} $ } $) Gibt den Betrag $ c_j $ an. Wählen Sie aus den Kandidaten aus, damit der Gesamtbetrag maximiert wird. Wählen Sie keine doppelten Elemente der Menge $ M $ aus Es kann auch berücksichtigt werden, dass die Zielfunktion maximiert und die Ungleichheit der Einschränkungsbedingung in Assembly Covering Problem umgekehrt wird.

Ausführungsmethode

usage


Signature: combinatorial_auction(n, cand, limit=-1)
Docstring:
Kombinationsauktionsproblem
Maximieren Sie den Verkaufspreis so, dass die maximale Anzahl von Kandidaten für jeden Käufer ohne doppelten Verkauf von Elementen nicht überschritten wird
Eingang
    n:Elementanzahl
    cand: (Geldbetrag,Teilmenge,Käufer-ID)Kandidatenliste. Sie müssen keine Käufer-ID haben
    limit:Maximale Anzahl von Kandidaten für jeden Käufer.-1 ist unbegrenzt. Ein Wörterbuch mit der Käufer-ID als Schlüssel ist möglich
Ausgabe
Nummernliste der ausgewählten Kandidatenliste

python


#Stichprobe
from ortoolpy import combinatorial_auction
cand = [
    ( 15, (0,2), 0),
    ( 10, (0,), 1),
    (  8, (1,), 1),
    ( 14, (1,2), 2),
]
combinatorial_auction(3, cand)

Ergebnis


[1, 3]

python


# pandas.DataFrame
from ortoolpy.optimization import CombinatorialAuction
CombinatorialAuction('data/auction.csv')
id price element buyer
2 1 10.0 a 1
4 3 14.0 b 1
5 3 NaN c 1

python


# pandas.DataFrame
from ortoolpy.optimization import CombinatorialAuction
CombinatorialAuction('data/auction.csv',limit=1)
id price element buyer
0 0 15.0 a 0
1 0 NaN c 0
3 2 8.0 b 2

Daten

Ergänzung

Recommended Posts

Kombinationsoptimierung - typisches Problem - Kombinationsauktionsproblem
Kombinationsoptimierung - typisches Problem-Rucksack-Problem
Kombinationsoptimierung - typisches Problem - n-dimensionales Packungsproblem
Kombinationsoptimierung - typisches problemstabiles Matching-Problem
Kombinationsoptimierungstypisches Problem-verallgemeinertes Zuordnungsproblem
Kombinationsoptimierung - typisches Problem beim Packen von Problembehältern
Kombinationsoptimierung - typisches Problem - Maximum-Matching-Problem
Kombinationsoptimierung - typisches Problem - sekundäres Zuordnungsproblem
Kombinationsoptimierung - typisches Problem - Problem mit dem kürzesten Weg
Kombinationsoptimierung - typisches Problem - Maximum-Flow-Problem
Kombinationsoptimierungstypisches Problem-Aggregat-Abdeckungsproblem
Kombinationsoptimierung - typisches Problem-Gewichtsanpassungsproblem
Kombinationsoptimierung - typisches Problem bei der Platzierung von Problemeinrichtungen
Kombinationsoptimierung - typisches Problem-Job-Shop-Problem
Kombinationsoptimierung - typisches Problem - maximales Schnittproblem
Kombinationsoptimierung - typisches Problem - Rundschreiben Verkäufer Problem
Kombinationsoptimierung - typisches Problem bei der Planung der Problemarbeit
Kombinationsoptimierung - typisches Problem - Minimum des Gesamtflächenbaumproblems
Kombinationsoptimierungstypisches Problem-Maximum-Stabil-Set-Problem
Kombinationsoptimierung - typisches Problem - Problem der chinesischen Postzustellung
Kombinationsoptimierung - Typisches Problem - Problem mit der Transportroute (Lieferoptimierung)
Kombinationsoptimierung - Minimum Cut Problem
Kombinationsoptimierung - Typisches Problem - Problem bei der Platzierung der Einrichtung ohne Kapazitätsbeschränkung
Kombinationsoptimierungstypische Probleme und wie es geht