python filter_algospot.py

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python filter_algospot.py相关的知识,希望对你有一定的参考价值。

import requests
from bs4 import BeautifulSoup as bs
from itertools import chain, filterfalse


langs = {'python': ['(py)', '(pypy)', '(py3)'],
         'ruby': ['(rb)']}


def get_pids(maxpage=17):
    """ gatter problem ids and return it one by one """
    baseurl = 'https://algospot.com/judge/problem/list/%d'
    for pagenum in range(1, maxpage+1):
        page = requests.get(baseurl % pagenum, timeout=None)
        soup = bs(page.text)
        tds = soup.find_all('td', class_='id')
        for p in tds:
            yield p.find('a').text.strip()


def solved_with(lang):
    """ return  a filter that checks if provided problem is ever solved with the
    language or not
    """
    if lang not in lang:
        raise
    target = langs[lang]
    baseurl = 'https://algospot.com/judge/problem/stat/%(pid)s/%(page)d/'

    def f(pid):
        firstpage = requests.get(baseurl % {'pid': pid, 'page': 1})
        soup = bs(firstpage.text)
        maxpage = soup.find('span', class_='step-links').find_all('a')[-1].text
        for pagenum in range(1, int(maxpage)+1):
            page = requests.get(baseurl % {'pid': pid, 'page': pagenum})
            soup = bs(page.text)
            tds = chain(soup.find_all('td', class_='fastest'),
                        soup.find_all('td', class_='shortest'))
            ans = ''.join(td.text for td in tds)
            if any(t in ans for t in target):
                return True
        return False

    return f


def solved_by(uid):
    """ return a filter that checks if provided problem is ever solved by the
    user or not. user is specified by user id, shown in his profile page url.
    for example user fleo0917(https://algospot.com/user/profile/13227)'s user
    id is '13227'
    """
    solved = set()
    baseurl = 'https://algospot.com/judge/problem/list/%(page)d?verdict=solved&user_tried=%(uid)s'
    firstpage = requests.get(baseurl % {'uid': uid, 'page': 1})
    soup = bs(firstpage.text)
    maxpage = soup.find('span', class_='step-links').find_all('a')[-1].text
    for pagenum in range(1, int(maxpage)+1):
        page = requests.get(baseurl % {'uid': uid, 'page': pagenum})
        soup = bs(page.text)
        tds = soup.find_all('td', class_='id')
        for p in tds:
            solved.add(p.find('a').text.strip())

    def f(pid):
        return pid in solved

    return f


def gen_url(pid):
    """ return problem definition url """
    return 'https://algospot.com/judge/problem/read/%s' % pid


if __name__ == '__main__':
    probs = get_pids()
    probs = filter(solved_with('python'), probs)
    probs = filterfalse(solved_by('3896'), probs)
    for p in probs:
        print('[%s](%s)' % (p, gen_url(p)))

以上是关于python filter_algospot.py的主要内容,如果未能解决你的问题,请参考以下文章

001--python全栈--基础知识--python安装

Python代写,Python作业代写,代写Python,代做Python

Python开发

Python,python,python

Python 介绍

Python学习之认识python