प्रतिष्ठा में किसी की भाग्यशाली संख्या तक पहुंचना


21

एक नया कोड-गोल्फर, जो, सिर्फ साइट पर पंजीकृत है। उसकी 1 प्रतिष्ठा है, लेकिन वास्तव में प्रतिष्ठा में अपने सभी भाग्यशाली संख्या तक पहुंचने के लिए निर्धारित है। जो उच्च शक्तियों में विश्वास करता है जो उसे (उसके या अन्य) कार्यों की न्यूनतम राशि के साथ अपने लक्ष्य को प्राप्त करने में मदद करेगा। एक नए उपयोगकर्ता के रूप में वह यह भी मानते हैं कि नकारात्मक प्रतिष्ठा संभव है।

आपको एक प्रोग्राम या फ़ंक्शन लिखना चाहिए जो जो को यह गणना करने में मदद करता है कि उसे कितनी कार्रवाई की उम्मीद करनी चाहिए।

विवरण

  • क्रियाएँ निम्नलिखित राशियों द्वारा प्रतिष्ठा बदल सकती हैं (स्टैकएक्सचेंज नियमों की परवाह किए बिना हर कदम पर सभी क्रियाएं उपलब्ध हैं):

    answer accepted:     +15
    answer voted up:     +10
    question voted up:    +5
    accepts answer:       +2
    votes down an answer: −1
    question voted down:  −2
    
  • अन्य विशेष प्रतिष्ठा परिवर्तन अवहेलना कर रहे हैं।

  • लकी नंबर नकारात्मक हो सकते हैं और किसी भी क्रम में पहुंचा जा सकता है।
  • आपके समाधान को मेरे कंप्यूटर पर एक मिनट के तहत किसी भी उदाहरण के परीक्षण के मामले को हल करना है (मैं केवल करीबी मामलों का परीक्षण करूंगा। मेरे पास एक नीचे-औसत पीसी है।)।

इनपुट

  • अपनी भाषा के सामान्य रूप में पूर्णांक की सूची के रूप में जो की भाग्यशाली संख्या।

उत्पादन

  • एकल पूर्णांक के रूप में आवश्यक न्यूनतम क्रियाओं की संख्या।
  • आउटपुट को स्टडआउट के लिए मुद्रित किया जा सकता है या पूर्णांक के रूप में लौटाया जा सकता है।

उदाहरण

इनपुट => आउटपुट (उदाहरण प्रतिष्ठा राज्य)

1                     => 0  (1)
3 2 1                 => 2  (1 -> 3 -> 2)
2 10 50               => 7  (1 -> 3 -> 2 -> 12 -> 10 -> 25 -> 40 -> 50)
10 11 15              => 3  (1 -> 11 -> 10 -> 15)
42 -5                 => 7  (1 -> -1 -> -3 -> -5 -> 10 -> 25 -> 40 -> 42)
-10                   => 6  (1 -> -1 -> -3 -> -5 -> -7 -> -9 -> -10)
15 -65                => 39
7 2015 25 99          => 142
-99 576 42 1111 12345 => 885

यह कोड-गोल्फ है इसलिए सबसे छोटी प्रविष्टि जीतती है।

जवाबों:


1

सी # - 501 बाइट्स

अपडेट 551 -> 501 बाइट्स

namespace System.Linq{class A {static void Main(){var i = c(new int[]{10,11,15});Console.WriteLine(i);Console.ReadLine();}private static int c(int[] a){var o=a.OrderBy(x => x).ToArray();int d=1,count=0;for(var i=0;i<a.Length;i++){if(o[i]==d)i++;int c=o[i],b=o.Length>=i+2?o[i+1]-o[i]:3;if(b<=2){i++;c=o[i];}while(d!=c){if(d>c){var e=d-c;if(e>1)d-=2;else d-=1;}else if(c>d){var e=c-d+2;if(e>14)d+=15;else if(e>9)d+=10;else if(e>4)d+=5;else if(e>2)d+=2;}count++;}if(b<=2){d-=b;count++;}}return count;}}}

अघोषित कोड

namespace System.Linq {
    class Program {
        static void Main(){
            var i = CalculateNumbers(new int[]{10,11,15});
            Console.WriteLine(i);
            Console.ReadLine();
        }
        private static int CalculateNumbers(int[] numbers){
            var ordered = numbers.OrderBy(x => x).ToArray();
            int cur = 1, count = 0;
            for (var i = 0; i < numbers.Length; i++){
                if (ordered[i] == cur) i++;
                int val = ordered[i], next = ordered.Length >= i+2 ? ordered[i + 1] - ordered[i] : 3;
                if (next <= 2){
                    i++;
                    val = ordered[i];
                }
                while (cur != val){
                    if (cur > val){
                        var dif = cur - val;
                        if (dif > 1)
                            cur -= 2;
                        else
                            cur -= 1;
                    } else if (val > cur){
                        var dif = val - cur + 2;
                        if (dif > 14)
                            cur += 15;
                        else if (dif > 9)
                            cur += 10;
                        else if (dif > 4)
                            cur += 5;
                        else if (dif > 2)
                            cur += 2;
                    }
                    count++;
                }
                if (next <= 2){
                    cur -= next;
                    count++;
                }
            }
            return count;
        }
    }
}

16

जंग, 929 923 अक्षर

use std::io;use std::str::FromStr;static C:&'static [i32]=&[-2,-1,2,5,10,15];fn main(){let mut z=String::new();io::stdin().read_line(&mut z).unwrap();let n=(&z.trim()[..]).split(' ').map(|e|i32::from_str(e).unwrap()).collect::<Vec<i32>>();let l=*n.iter().min().unwrap();let x=n.iter().max().unwrap()-if l>1{1}else{l};let s=g(x as usize);println!("{}",p(1,n,&s));}fn g(x:usize)->Vec<i32>{let mut s=vec![std::i32::MAX-9;x];for c in C{if *c>0&&(*c as usize)<=x{s[(*c-1)as usize]=1;}}let mut i=1us;while i<x{let mut k=i+1;for c in C{if(i as i32)+*c<0{continue;}let j=((i as i32)+*c)as usize;if j<x&&s[j]>s[i]+1{s[j]=s[i]+1;if k>j{k=j;}}}i=k;}s}fn p(r:i32,n:Vec<i32>,s:&Vec<i32>)->i32{if n.len()==1{h(r,n[0],&s)}else{(0..n.len()).map(|i|{let mut m=n.clone();let q=m.remove(i);p(q,m,&s)+h(r,q,&s)}).min().unwrap()}}fn h(a:i32,b:i32,s:&Vec<i32>)->i32{if a==b{0}else if a>b{((a-b)as f32/2f32).ceil()as i32}else{s[(b-a-1)as usize]}}

यह मजेदार था!


कार्यान्वयन पर टिप्पणी

तो मैं स्पष्ट रूप से आकार से बहुत खुश नहीं हूं। लेकिन जंग वैसे भी गोल्फ में बिल्कुल भयानक है। प्रदर्शन, हालांकि, अद्भुत है।

कोड परीक्षण मामलों में से प्रत्येक को एक निकट-तात्कालिक समय में सही ढंग से हल करता है, इसलिए प्रदर्शन स्पष्ट रूप से एक मुद्दा नहीं है। मज़े के लिए, यहाँ एक और अधिक कठिन परीक्षण मामला है:

1234567 123456 12345 1234 123 777777 77777 7777 777

जिसके लिए उत्तर है 82317, जो कि मेरा कार्यक्रम 1.66 सेकंड में (मध्यम प्रदर्शन) लैपटॉप पर हल करने में सक्षम था , यहां तक ​​कि पुनरावर्ती जानवर-बल हैमिल्टन पथ एल्गोरिदम के साथ भी।

टिप्पणियों

  • पहले हमें एक संशोधित भारित ग्राफ का निर्माण करना चाहिए, जिसमें नोड्स प्रत्येक "भाग्यशाली" संख्या होती है और वजन होता है कि एक प्रतिष्ठा स्तर से दूसरे तक पहुंचने में कितने बदलाव होते हैं। नोड्स की प्रत्येक जोड़ी द्वारा जुड़ा होना चाहिए दो किनारों से , क्योंकि ऊपर जाना प्रतिष्ठा मूल्य में नीचे जाने के समान नहीं है (आप उदाहरण के लिए +10 प्राप्त कर सकते हैं, लेकिन -10 नहीं)।

  • अब हमें यह पता लगाने की आवश्यकता है कि एक प्रतिनिधि मूल्य से दूसरे में न्यूनतम परिवर्तन कैसे खोजें।

    • उच्च मूल्य से निम्न मूल्य प्राप्त करने के लिए, यह सरल है: बस ceil((a - b) / 2)जहां ले जाएंa उच्च मूल्य है और bनिम्न मान है। हमारा एकमात्र तार्किक विकल्प यह है कि जितना संभव हो -2 का उपयोग करें, और फिर -1 एक बार यदि आवश्यक हो।

    • कम से उच्च मूल्य थोड़ा अधिक जटिल है, क्योंकि सबसे बड़ा संभव मूल्य का उपयोग करना हमेशा इष्टतम नहीं होता है (उदाहरण के लिए 0 से 9 के लिए, इष्टतम समाधान +10 -1 है)। हालांकि, यह एक पाठ्यपुस्तक गतिशील प्रोग्रामिंग समस्या है, और सरल डीपी इसे हल करने के लिए पर्याप्त है।

  • एक बार जब हमने प्रत्येक नंबर से हर दूसरे नंबर पर न्यूनतम बदलावों की गणना की है, तो हम अनिवार्य रूप से टीएसपी के मामूली संस्करण (बिक्री बिक्री की समस्या) के साथ छोड़ दिए जाते हैं। सौभाग्य से, नोड्स की एक छोटी संख्या पर्याप्त है (सबसे कठिन परीक्षण मामले में अधिकतम 5) कि इस कदम के लिए जानवर बल पर्याप्त है।

अघोषित कोड (भारी टिप्पणी)

use std::io;
use std::str::FromStr;

// all possible rep changes
static CHANGES: &'static [i32] = &[-2, -1, 2, 5, 10, 15];

fn main() {
    // read line of input, convert to i32 vec
    let mut input = String::new();
    io::stdin().read_line(&mut input).unwrap();
    let nums = (&input.trim()[..]).split(' ').map(|x| i32::from_str(x).unwrap())
        .collect::<Vec<i32>>();

    // we only need to generate as many additive solutions as max(nums) - min(nums)
    // but if one of our targets isn't 1, this will return a too-low value.
    // fortunately, this is easy to fix as a little hack
    let min = *nums.iter().min().unwrap();
    let count = nums.iter().max().unwrap() - if min > 1 { 1 } else { min };
    let solutions = generate_solutions(count as usize);

    // bruteforce!
    println!("{}", shortest_path(1, nums, &solutions));
}

fn generate_solutions(count: usize) -> Vec<i32> {
    let mut solutions = vec![std::i32::MAX - 9; count];

    // base cases
    for c in CHANGES {
        if *c > 0 && (*c as usize) <= count {
            solutions[(*c-1) as usize] = 1;
        }
    }

    // dynamic programming! \o/
    // ok so here's how the algorithm works.
    // we go through the array from start to finish, and update the array
    //   elements at i-2, i-1, i+2, i+5, ... if solutions[i]+1 is less than
    //   (the corresponding index to update)'s current value
    // however, note that we might also have to update a value at a lower index
    //   than i (-2 and -1)
    // in that case, we will have to go back that many spaces so we can be sure
    //   to update *everything*.
    // so for simplicity, we just set the new index to be the lowest changed
    //   value (and increment it if there were none changed).
    let mut i = 1us;  // (the minimum positive value in CHANGES) - 1 (ugly hardcoding)
    while i < count {
        let mut i2 = i+1;
        // update all rep-values reachable in 1 "change" from this rep-value,
        //   by setting them to (this value + 1), IF AND ONLY IF the current
        //   value is less optimal than the new value
        for c in CHANGES {
            if (i as i32) + *c < 0 { continue; }  // negative index = bad
            let idx = ((i as i32) + *c) as usize;  // the index to update
            if idx < count && solutions[idx] > solutions[i]+1 {
                // it's a better solution! :D
                solutions[idx] = solutions[i]+1;
                // if the index from which we'll start updating next is too low,
                //   we need to make sure the thing we just updated is going to,
                //   in turn, update other things from itself (tl;dr: DP)
                if i2 > idx { i2 = idx; }
            }
        }
        i = i2;  // update index (note that i2 is i+1 by default)
    }

    solutions
}

fn shortest_path(rep: i32, nums: Vec<i32>, solutions: &Vec<i32>) -> i32 {
    // mercifully, all the test cases are small enough so as to not require
    //   a full-blown optimized traveling salesman implementation
    // recursive brute force ftw! \o/
    if nums.len() == 1 { count_changes(rep, nums[0], &solutions) }  // base case
    else {
        // try going from 'rep' to each item in 'nums'
        (0..nums.len()).map(|i| {
            // grab the new rep value out of the vec...
            let mut nums2 = nums.clone();
            let new_rep = nums2.remove(i);
            // and map it to the shortest path if we use that value as our next target
            shortest_path(new_rep, nums2, &solutions) + count_changes(rep, new_rep, &solutions)
        }).min().unwrap()  // return the minimum-length path
    }
}

fn count_changes(start: i32, finish: i32, solutions: &Vec<i32>) -> i32 {
    // count the number of changes required to get from 'start' rep to 'finish' rep
    // obvious:
    if start == finish { 0 }
    // fairly intuitive (2f32 is just 2.0):
    else if start > finish { ((start - finish) as f32 / 2f32).ceil() as i32 }
    // use the pregenerated lookup table for these:
    else /* if finish > start */ { solutions[(finish - start - 1) as usize] }
}

1
बहुत बढ़िया जवाब! मुझे रुस्ट में दिलचस्पी है और स्पष्टीकरण वास्तव में सीखने के लिए बहुत उपयोगी है। और बस एक सिर के रूप में, आप के साथ वाक्य रचना हाइलाइटिंग प्राप्त कर सकते हैं <!-- language-all: lang-rust -->। ;)
एलेक्स ए।

मैं एक समाधान पर काम कर रहा हूं, और मैंने देखा कि इस सी-जैसे छद्म कोड की तरह, बहुत कम लुकअप-टेबल का उपयोग करके कम से उच्च वजन पर होने वाले परिवर्तनों की न्यूनतम मात्रा आसानी से O (1) में गणना की जा सकती है floor((a-b)/15)+{0,2,1,2,2,1,3,2,2,2,1,3,2,2,2}[(a-b)%15]। आपका समाधान शायद इससे लाभान्वित हो सकता है।
फोर्स

2

पायथ - 43 42 बाइट्स

सभी क्रमपरिवर्तन और संयोजनों के साथ पूरी तरह से जानवर बल दृष्टिकोण का उपयोग करता है। गोल्फ को अधिक नहीं देखना क्योंकि पाइथ में अनुवाद होगा। अनुवादित।

K5tf.Em.Am}kmhs<dbUdQsm.pk.C[15yKK2_1_2)TZ

यह अजगर संस्करण की तुलना में भी धीमा है क्योंकि मैं थोड़ी देर के लूप के बजाय फिल्टर का उपयोग करता हूं। स्पष्टीकरण जल्द ही आ रहा है, अब पायथन कोड को देखें।

इसे यहाँ ऑनलाइन प्रयास करें

from itertools import*
Q,Z=eval(input()),0
while True:
    if any(map(lambda d:all(map(lambda k:k in map(lambda b:sum(d[:b])+1,range(len(d))),Q)),chain.from_iterable(map(lambda k:permutations(k),combinations_with_replacement([15,10,5,2,-1,-2],Z))))):
        print(Z-1)
        break
    Z+=1

छोटे लोगों पर काम करता है, इसे बड़े लोगों पर पूरा नहीं होने देता।


कोड को ठीक से नहीं पढ़ा है, लेकिन क्या आप y5व्हाट्सएप पर सेव करने के लिए 10 की जगह, कह सकते हैं ?
Sp3000

@ Sp3000 यह व्हाट्सएप को बचाएगा लेकिन कुल मिलाकर कोई चार्ट नहीं। लेकिन मुझे लगता है कि मैं स्टोर को सूची को संपीड़ित करके एक K=5
चार्ट

ध्यान दें कि यह उत्तर नियमों का पालन नहीं करता है क्योंकि "आपके समाधान को एक मिनट के तहत किसी भी उदाहरण परीक्षण मामले को हल करना है"। (उद्धरण विवरण अनुभाग में बोल्ड किया गया है।)
यादृच्छिक संख्या

0

सी ++ - 863 बाइट्स, अनगुल्फेड

यह काफी तेज गति से चलता है, उसी बॉलपार्क में जो रस्ट में लिखे गए घोल के रूप में होता है (अनुकूलन के साथ संकलन करते समय लगभग 6 गुना तेज)। मैं इसे बाद में आज शाम (स्वीडन में शाम को, अर्थात्) गोल्फ करूंगा।

#include <iostream>
#include <vector>
#include <string>
#include <sstream>

const int lookup[] = {0, 2, 1, 2, 2, 1, 3, 2, 2, 2, 1, 3, 2, 2, 2};

int distance(int start, int end) {
    return start > end
        ? (start - end + 1) / 2
        : (end - start) / 15 + lookup[(end - start) % 15];
}

int walk(int current, std::vector<int> points) {
    int min = 0;

    if (points.size() == 0) return 0;

    for (int i = 0; i < points.size(); i++) {
        std::vector<int> new_points = points;
        new_points.erase(new_points.begin() + i);

        int d = distance(current, points[i]) + walk(points[i], new_points);

        min = min && min < d ? min : d;
    }

    return min;
}

int main() {
    std::vector<int> points;

    std::string line;
    std::getline(std::cin, line);

    std::stringstream ss(line);
    int i;

    while (ss >> i)
        points.push_back(i);

    std::cout << walk(1, points) << std::endl;

    return 0;
}
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.