गोल्फ के भगवान


9

पहचान

जेआरआर टॉल्किन के लॉर्ड ऑफ द रिंग्स में, यह वाक्यांश प्रत्येक पुस्तक के कवर पर है।

Three Rings for the Elven-kings under the sky,
Seven for the Dwarf-lords in their halls of stone, 
Nine for Mortal Men doomed to die,
One for the Dark Lord on his dark throne
In the Land of Mordor where the Shadows lie.
One Ring to rule them all, One Ring to find them,
One Ring to bring them all, and in the darkness bind them,
In the Land of Mordor where the Shadows lie

हालाँकि, यह उतना दिलचस्प नहीं है। यह सिर्फ है। आइए इसे बदलते हैं

तुम्हे जो करना है

स्टैक एक्सचेंज एपीआई (या codegolf.stackexchange.com/users, या स्टैक एक्सचेंज डेटा एक्सप्लोरर) का उपयोग करें और दो उपयोगकर्ताओं को उच्चतम स्कोर के साथ खोजेंनवीनतम उपयोगकर्ता, और केवल नकारात्मक स्कोर वाले उच्चतम-प्रतिष्ठा वाले उपयोगकर्ता पद।

फिर, आपको इन उपयोगकर्ता नामों को निम्नलिखित पाठ में सम्मिलित करना होगा:

Three Golfs for the <highest-scored code-golf user>-king under the sky,
Seven for the <second-highest-scored code-golf user>-lord in their halls of stone,
Nine for the Mortal <newest user> doomed to die,
One for the Dark Lord <highest reuptation user with only negative scored code-golf posts>
In the land of Golfdor, where the Golfers lie
One Golf to rule them all, One Golf to find them,
One Golf to bring them all, and in the darkness bind them,
In the Land of Golfdor, where the Golfers lie

आपको टेक्स्ट में पाए गए चार उपयोगकर्ता नाम को कोष्ठक में सम्मिलित करना होगा।

अन्य नियम

  • ये है इसलिए सबसे छोटा कोड जीतता है।
  • कोई URL शॉर्टकट (सहित ppcg.(ga|lol))

1
क्या आप In the Land of Golfdor, where the Golfers lieआउटपुट पर दो बार चाहते हैं जैसे यह पुस्तकों पर है?
रिले

क्या हम मान सकते हैं कि केवल नकारात्मक रूप से बनाए गए कोड गोल्फ पदों के साथ कम से कम एक उपयोगकर्ता होगा?
मार्टिन एंडर

1
@ रिले ओह, मैं देख रहा हूं। संपादन।
NoOneIsHere

1
क्या डार्क लॉर्ड के पास कोड-गोल्फ में 0 अंक हो सकते हैं, या यह एक नकारात्मक स्कोर होना चाहिए?
मेगाटॉम

1
@MegaTom यह नकारात्मक होना चाहिए।
NoOneIsHere

जवाबों:


2

PHP, 577 बाइट्स

टेस्ट नहीं हुआ; मेरे पास वर्तमान में कोई प्रणाली उपलब्ध नहीं है allow_url_fopen=On
और मैंने पृष्ठ स्रोतों को कॉपी और पेस्ट करने में समय नहीं लगाया है।

function g($s){return join(file("http://codegolf.stackexchange.com/$s"));}$m=preg_match_all;$m("#r-de.+/(\d+)/.+>(.+)<#U",$a=g($u="$u&filter=all"),$b);$h=$b[2];$m("#>(.+)</a.+\s1 i#",g("users?tab=NewUsers&sort=creationdate"),$c);while($a){foreach($b[1]as$i=>$n)if($m("#st \"><strong>(-?)\d+#",$e=g("search?tab=votes&q=user:$n+[code-golf]"),$d)&&$d[1][0])break 2;if($a=strstr($a,"l=\"n"))$m("#r-de.+/(\d+)/.+>(.+)<#U",$a=g("$u&page=".$p+=!$p++),$b);}$m("#<code>(.+)</code>#U",g("q/93545"),$t);echo join([1=>$h[0],3=>$h[1],5=>$c[1][0],7=>$b[2][$i];]+split("#&[lg]t;#",$t[1][2]));

टूट - फूट

// function to get page content from ppcg
function g($s){return join(file("http://codegolf.stackexchange.com/$s"));}

$m=preg_match_all;

// A,B: highest scores: find user names
$m("#r-de.+/(\d+)/.+>(.+)<#U",$a=g($u="users?filter=all"),$b);
$h=$b[2];   // remember the names

// C: new users: find username after "1 in one day"
$m("#>(.+)</a.+\s1 i#",g("$u&tab=NewUsers&sort=creationdate"),$c);

// D: loop through users from first query
while($a)
{
    foreach($b[1]as$i=>$n)
        // find "vote-count-post" in code-golf votes for that user
        if($m("#st \"><strong>(-?)\d+#",$e=g("search?tab=votes&q=user:$n+[code-golf]"),$d)
        &&$d[1][0])             // test if highest vote is negative
            break 2;
    // none found yet?
    if($a=strstr($a,"l=\"n"))   // if there is a "next" link, get next page
        $m("#r-de.+/(\d+)/.+>(.+)<#U",$a=g("$u&page=".$p+=!$p++),$b);
}

$m("#<code>(.+)</code>#U",g("q/93545"),$t); // get code blocks from question page

echo join([         // 4. join and print
    1=>$h[0],           // first two results from first preg_match
    3=>$h[1],
    5=>$c[1][0],        // first result from second preg_match
    7=>$b[2][$i];       // $i-th username from (latest) reputation list
]+                  // 3. and replace indexes 1,3,5,7 with above array
split("#&[lg]t;#",  // 2. split by "<" and ">"
    $t[1][2]        // 1. output template is the 3rd code block
));
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.