結果

問題 No.1225 I hate I hate Matrix Construction
ユーザー tonnnura172tonnnura172
提出日時 2020-10-22 20:05:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 584 ms / 2,000 ms
コード長 1,139 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,768 KB
最終ジャッジ日時 2024-07-21 09:30:40
合計ジャッジ時間 23,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 565 ms
44,072 KB
testcase_01 AC 545 ms
44,200 KB
testcase_02 AC 540 ms
44,072 KB
testcase_03 AC 540 ms
44,448 KB
testcase_04 AC 573 ms
44,192 KB
testcase_05 AC 557 ms
44,188 KB
testcase_06 AC 554 ms
44,068 KB
testcase_07 AC 544 ms
44,064 KB
testcase_08 AC 547 ms
44,192 KB
testcase_09 AC 554 ms
44,192 KB
testcase_10 AC 558 ms
44,072 KB
testcase_11 AC 584 ms
44,064 KB
testcase_12 AC 564 ms
44,192 KB
testcase_13 AC 551 ms
44,192 KB
testcase_14 AC 540 ms
44,572 KB
testcase_15 AC 539 ms
44,192 KB
testcase_16 AC 535 ms
44,188 KB
testcase_17 AC 541 ms
45,180 KB
testcase_18 AC 549 ms
45,768 KB
testcase_19 AC 538 ms
44,192 KB
testcase_20 AC 538 ms
44,192 KB
testcase_21 AC 537 ms
44,316 KB
testcase_22 AC 544 ms
44,192 KB
testcase_23 AC 548 ms
44,192 KB
testcase_24 AC 540 ms
44,200 KB
testcase_25 AC 545 ms
44,196 KB
testcase_26 AC 542 ms
44,188 KB
testcase_27 AC 544 ms
44,068 KB
testcase_28 AC 543 ms
44,188 KB
testcase_29 AC 552 ms
44,196 KB
testcase_30 AC 549 ms
44,192 KB
testcase_31 AC 550 ms
45,632 KB
testcase_32 AC 565 ms
44,612 KB
testcase_33 AC 570 ms
44,580 KB
testcase_34 AC 558 ms
45,640 KB
testcase_35 AC 548 ms
45,640 KB
testcase_36 AC 539 ms
44,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians, gcd, log2
from itertools import accumulate, permutations, combinations, product
from operator import itemgetter, mul, add
from copy import deepcopy
from string import ascii_lowercase, ascii_uppercase, digits
from bisect import bisect, bisect_left
from heapq import heappush, heappop
from functools import reduce, lru_cache
import numpy as np
def input(): return sys.stdin.buffer.readline()[:-1]
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
def ZIP(n): return zip(*(MAP() for _ in range(n)))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

N = INT()
S = LIST()
T = LIST()

arr = np.zeros((N, N), dtype=np.int64)

for i in range(N):
	if S[i] == 2:
		arr[i, :] = 1

for i in range(N):
	if T[i] == 2:
		arr[:, i] = 1

tate = 0
yoko = 0
for i in range(N):
	if S[i] == 1 and not any(arr[i, :]):
		yoko += 1
	if T[i] == 1 and not any(arr[:, i]):
		tate += 1

print(arr.sum()+min(yoko, tate)+abs(yoko-tate))
0