結果
問題 | No.1744 Selfish Spies 1 (à la Princess' Perfectionism) |
ユーザー | dn6049949 |
提出日時 | 2021-11-14 21:27:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 835 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 82,696 KB |
実行使用メモリ | 86,064 KB |
最終ジャッジ日時 | 2024-11-30 06:26:16 |
合計ジャッジ時間 | 4,381 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
56,084 KB |
testcase_01 | AC | 46 ms
55,784 KB |
testcase_02 | AC | 45 ms
55,204 KB |
testcase_03 | AC | 44 ms
54,744 KB |
testcase_04 | AC | 44 ms
54,736 KB |
testcase_05 | WA | - |
testcase_06 | AC | 45 ms
55,372 KB |
testcase_07 | WA | - |
testcase_08 | AC | 45 ms
54,696 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 46 ms
56,816 KB |
testcase_12 | WA | - |
testcase_13 | AC | 49 ms
56,944 KB |
testcase_14 | WA | - |
testcase_15 | AC | 58 ms
65,832 KB |
testcase_16 | AC | 69 ms
70,932 KB |
testcase_17 | WA | - |
testcase_18 | AC | 68 ms
72,340 KB |
testcase_19 | WA | - |
testcase_20 | AC | 48 ms
56,348 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 50 ms
57,148 KB |
testcase_24 | WA | - |
testcase_25 | AC | 68 ms
70,880 KB |
testcase_26 | AC | 69 ms
71,072 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 80 ms
76,824 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
#!usr/bin/env python3 from collections import defaultdict, deque from heapq import heappush, heappop from itertools import permutations, accumulate import sys import math import bisect def LI(): return [int(x) for x in sys.stdin.readline().split()] def I(): return int(sys.stdin.readline()) def IR(n): return [I() for _ in range(n)] def LIR(n): return [LI() for _ in range(n)] sys.setrecursionlimit(1000000) mod = 1000000007 def main(): n,m,l = LI() st = LIR(l) fs = [0]*(n+1) ft = [0]*(m+1) for s,t in st: fs[s] += 1 ft[t] += 1 a = sum(i>=1 for i in fs) b = sum(i>=1 for i in ft) m = min(a,b) for s,t in st: a_ = a-(fs[s]==1) b_ = b-(ft[t]==1) m_ = min(a_,b_) print(["Yes","No"][m != m_]) return if __name__ == "__main__": main()