इस चुनौती का विचार सरल है: कार्ड गेम यूचरे खेलने के लिए एक बॉट बनाएं।
आप में से जो लोग पहले से ही उन्हें नहीं जानते हैं, उनके लिए मैंने यूचरे को नियम लिखे हैं क्योंकि वे इस चुनौती से संबंधित हैं।
मैं अजगर या कुछ समान का उपयोग करने की सलाह देता हूं, लेकिन केवल वास्तविक प्रतिबंध यह है कि इसे नियंत्रक कोड के साथ संगत होना चाहिए
इनपुट:
गेम या राउंड के वर्तमान चरण के आधार पर आपके यूचरे बॉट को विभिन्न प्रकार के इनपुट मिलेंगे। आम तौर पर बोलते हुए, आपको पहले चरण पर गेम चरण मिलेगा, उसके बाद अल्पविराम और आपकी टीम के पास कितने अंक होंगे, और फिर निम्न पंक्तियों पर संबंधित डेटा।
क्रोनोलॉजिकल रूप से, आपके बॉट को निम्नलिखित क्रम में इनपुट मिलेगा:
Ordering Trump:
js,ah,qc,ts,jc // the cards in your hand
2 // number of points your team has
0 // number of tricks your team has taken
ordering // the phase of the game
th // the turned up card
p,p // each previous player’s decision
Naming Trump:
js,ah,qc,ts,jc // the cards in your hand
2 // number of points your team has
0 // number of tricks your team has taken
naming // the phase of the game
p // each previous player’s decision
Dealer Discarding:
js,ah,qc,ts,jc // the cards in your hand
2 // number of points your team has
0 // number of tricks your team has taken
discard // the phase of the game
th // the card you will pick up
Going alone:
js,ah,qc,ts,jc // the cards in your hand
2 // number of points your team has
0 // number of tricks your team has taken
alone // the phase of the game
h // the trump suit
n,n // each previous player’s decision
Your turn:
js,ah,qc,ts,jc // the cards in your hand
2 // number of points your team has
0 // number of tricks your team has taken
turn // the phase of the game
h // the trump suit
td,8h,p // each previous player’s card
Trick data:
// the cards in your hand (none, since this happens at the end of a trick)
2 // number of points your team has
1 // number of tricks your team has taken
trick // the phase of the game
0 // the index of the following list that is your card
js,tc,4d,js // the cards played during the trick in the order they were played
आउटपुट:
आपके यूचरे बॉट में गेम या राउंड के वर्तमान चरण के आधार पर अलग-अलग आउटपुट होंगे।
Ordering Trump:
p //for pass
OR
o //for order up
Naming Trump:
p //for pass
OR ANY OF
c,s,h,d //the suit you want to name
Going alone:
n // no
OR
y // yes
Your turn:
js //the card you want to play
स्कोरिंग:
आपके बॉट का स्कोर कुल गेम है जो इसे जीतता है।
आपका बॉट हर दूसरे बॉट के खिलाफ खेलेगा, और यह हमेशा खुद की प्रति के साथ भागीदारी करेगा।
टिप्पणियाँ:
यहाँ python2.7 में एक सरल टेम्पलेट है:
#!/usr/bin/python2.7
import sys
data = sys.stdin.readlines()
hand = data[0].strip().split(',') # Hand as a list of strings
points = int(data[1]) # Number of points
tricks = int(data[2]) # Number of tricks
out = ''
if data[3] == 'ordering':
card = data[4] # The upturn card
prev = data[5].strip().split(',') # The previous player's decisions as a list
# Ordering logic
out = # 'o' or 'p'
elif data[3] == 'naming':
prev = data[4].strip().split(',') # The previous player's decisions as a list
# Naming logic
out = # 'p', 'h', 's', 'c', or 'd'
elif data[3] == 'discard':
card = data[4] # The card you'll take
# Discarding logic
out = # The card you want to discard
elif data[3] == 'alone':
trump = data[4] # The trump suit
prev = data[5].strip().split(',') # The previous player's decisions as a list
# Alone logic
out = # 'y' for yes, 'n' for no
elif data[3] == 'turn':
trump = data[4] # The trump suit
prev = data[5].strip().split(',')
# Turn logic
out = # The card you want to play
elif data[3] == 'trick':
trump = data[5]
cards = data[6].strip().split(',')
my_card = cards[int(data[4])]
# Data logic
print(out)
हमेशा 4 कुल प्रतिक्रियाएं होंगी। यदि कोई अकेले जाता है, तो उनके साथी की प्रतिक्रिया उनकी बारी पर "पी" होगी।
मैंने निरर्थक इनपुट की मात्रा को कम करने की कोशिश की, ताकि अतिरिक्त स्पष्ट हो:
2 ए। डीलर / नेता और आपके साथी द्वारा खेले गए कार्ड के सापेक्ष आपकी स्थिति दोनों पिछले आउटपुट की संख्या से निर्धारित की जा सकती है। आपके और आपके साथी के बीच 1 खिलाड़ी है। उदाहरण के लिए, यदि आपको अपनी बारी पर अंतिम पंक्ति के रूप में "td, 8h, p" मिलता है, तो आप देख सकते हैं कि आपके साथी ने 8h खेला है, और दूसरी टीम में एक खिलाड़ी है जो अकेले जा रहा है।
यदि आप उत्सुक हैं, तो सौदा पारंपरिक तरीके से (2 और 3 कार्ड के दो राउंड वैकल्पिक पैकेट में) किया जाता है, लेकिन यह वास्तव में आपके बॉट के लिए प्रासंगिक नहीं है, इसलिए ...
यदि दूसरा खिलाड़ी ट्रम्प चरण में आदेश देने का फैसला करता है, तो वह चरण जारी रहेगा, लेकिन उनके आउटपुट को बहुत अधिक अनदेखा किया जाएगा। दूसरे शब्दों में, जो कोई भी पहले ऑर्डर करता है वह किसी भी अन्य आउटपुट की परवाह किए बिना नामर्स टीम पर है।
विभिन्न गेम चरणों के लिए निम्नलिखित डिफॉल्ट हैं। यदि आप उस दौर के लिए मान्य प्रतिक्रिया का उत्पादन नहीं करते हैं, तो आपकी प्रतिक्रिया नीचे दी गई है।
आदेश ट्रम्प: पी
नामकरण ट्रम्प: पी
छोड़ना: (आपके हाथ में पहला कार्ड)
अकेला जाना: एन
आपकी बारी: (आपके हाथ में पहला कानूनी कार्ड)
यहां आपके परीक्षण उद्देश्यों के लिए नियंत्रक कोड है।
6a। ध्यान दें कि आप 2 या 4 बॉट नाम से गुजर सकते हैं, यदि आप इसे 4 बॉट देते हैं तो वे बेतरतीब ढंग से जुड़ जाते हैं, और 2 के साथ स्वयं की प्रतियों के साथ भागीदारी की जाती है।
6b। आपको नियंत्रक कोड के समान निर्देशिका में 'बॉट्स' निर्देशिका की आवश्यकता होती है, और बॉट निर्देशिका में आपके बॉट कोड की आवश्यकता होती है।
उन लोगों के लिए जो अपने बॉट को याद रखना चाहते हैं कि कौन से कार्ड खेले गए थे, आपको "ट्रिक" चरण के दौरान अवसर दिया जाता है, जो आपके बॉट को बताता है कि कौन सा कार्ड खेला गया था। आप बॉट्स डायरेक्टरी में किसी फाइल को तब तक लिख सकते हैं जब तक वह फाइल 1kb से अधिक न हो।
स्कोरबोर्ड:
Old Stager: 2
Marius: 1
Random 8020: 0