2017-03-03 02:33:16 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import yaml
|
|
|
|
import traceback
|
|
|
|
from collections import Counter
|
|
|
|
|
|
|
|
problem_names = os.listdir(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
problems = []
|
|
|
|
|
|
|
|
for problem_name in problem_names:
|
|
|
|
try:
|
|
|
|
metadata_file = os.path.dirname(os.path.abspath(__file__)) + os.sep + problem_name + os.sep + "problem.yml"
|
|
|
|
with open(metadata_file, "r") as f:
|
|
|
|
metadata_raw = f.read()
|
|
|
|
metadata = yaml.load(metadata_raw)
|
|
|
|
if "category" in metadata:
|
|
|
|
problems.append(metadata)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
# print traceback.format_exc()
|
|
|
|
|
2017-03-06 07:58:08 +00:00
|
|
|
problems.sort(key=lambda p: p.get("value"), reverse=True)
|
2017-03-09 08:52:33 +00:00
|
|
|
print("Grand Total: %d" % len(problems))
|
|
|
|
print("Category Breakdown:")
|
2017-03-03 02:33:16 +00:00
|
|
|
|
2017-03-07 22:04:58 +00:00
|
|
|
maxtitle = max(map(lambda p: len(p.get("title")), problems)) + 3
|
|
|
|
maxauthor = max(map(lambda p: len(p.get("author")), problems)) + 3
|
|
|
|
|
2017-03-03 02:33:16 +00:00
|
|
|
c = Counter(map(lambda p: p.get("category", ""), problems))
|
|
|
|
categories = sorted(c.items(), key=lambda c: c[1], reverse=True)
|
|
|
|
for category, count in categories:
|
2017-03-09 08:52:33 +00:00
|
|
|
print(" %s: %s" % (category, count))
|
2017-03-03 02:33:16 +00:00
|
|
|
for problem in problems:
|
|
|
|
if problem.get("category") != category: continue
|
2017-03-09 08:52:33 +00:00
|
|
|
print(" %s %s %sp" % (problem.get("title") + " " * (maxtitle - len(problem.get("title"))), problem.get("author") + " " * (maxauthor - len(problem.get("author"))), problem.get("value")))
|