From 03592e34c45c0ee5d8a3d82e76b4361813fcba7a Mon Sep 17 00:00:00 2001 From: Raphael McSinyx Date: Tue, 1 Aug 2017 19:53:25 +0700 Subject: Add others/other/colorec.py --- others/other/colorec.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 others/other/colorec.py (limited to 'others/other/colorec.py') diff --git a/others/other/colorec.py b/others/other/colorec.py new file mode 100755 index 0000000..d55ac7f --- /dev/null +++ b/others/other/colorec.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python3 +from itertools import combinations + +COLORS = {1, 2, 3, 4} + +with open('COLOREC.INP') as f: + f.readline() + color, exes, eyes, count = {}, {}, {}, 0 + for line in f: + x, y, c = map(int, line.split()) + color[x, y] = c + exes.setdefault(y, []) + exes[y].append(x) + eyes.setdefault(x, []) + eyes[x].append(y) + +for v in eyes.values(): v.sort() +for y0, l in exes.items(): + for x0, x1 in combinations(l, 2): + s = COLORS - {color[x0, y0], color[x1, y0]} + if len(s) > 2: continue + for y1 in eyes[x0][y0:]: + try: + count += not s - {color[x0, y1], color[x1, y1]} + except: + continue + +with open('COLOREC.OUT', 'w') as f: print(count, file=f) -- cgit 1.4.1