結果

問題 No.1997 X Lighting
ユーザー とりゐとりゐ
提出日時 2022-07-01 22:36:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 1,205 bytes
コンパイル時間 834 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 111,452 KB
最終ジャッジ日時 2024-11-26 06:04:32
合計ジャッジ時間 9,819 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,148 KB
testcase_01 AC 39 ms
52,648 KB
testcase_02 AC 39 ms
53,088 KB
testcase_03 AC 39 ms
53,048 KB
testcase_04 AC 39 ms
54,068 KB
testcase_05 AC 71 ms
73,164 KB
testcase_06 AC 99 ms
76,480 KB
testcase_07 AC 42 ms
54,056 KB
testcase_08 AC 65 ms
71,504 KB
testcase_09 AC 65 ms
68,484 KB
testcase_10 AC 40 ms
54,196 KB
testcase_11 AC 43 ms
53,980 KB
testcase_12 AC 40 ms
54,368 KB
testcase_13 AC 117 ms
76,752 KB
testcase_14 AC 288 ms
104,736 KB
testcase_15 AC 198 ms
84,808 KB
testcase_16 AC 244 ms
90,036 KB
testcase_17 AC 469 ms
102,888 KB
testcase_18 AC 303 ms
98,012 KB
testcase_19 AC 577 ms
111,452 KB
testcase_20 AC 570 ms
107,588 KB
testcase_21 AC 566 ms
107,328 KB
testcase_22 AC 559 ms
110,364 KB
testcase_23 AC 329 ms
94,344 KB
testcase_24 AC 95 ms
76,584 KB
testcase_25 AC 545 ms
107,936 KB
testcase_26 AC 472 ms
102,128 KB
testcase_27 AC 484 ms
102,380 KB
testcase_28 AC 219 ms
88,084 KB
testcase_29 AC 216 ms
87,432 KB
testcase_30 AC 551 ms
109,140 KB
testcase_31 AC 398 ms
101,968 KB
testcase_32 AC 177 ms
82,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m,n=map(int,input().split())

s=set()
t=set()

s0query=[]
s1query=[]
#t0query=[]
#t1query=[]

ans=0
for i in range(n):
  x,y=map(int,input().split())
  if x+y not in s:
    s.add(x+y)
    lx,ly=1,x+y-1
    if ly>m:
      ly=m
      lx=x+y-m
    rx,ry=x+y-1,1
    if rx>m:
      rx=m
      ry=x+y-m
    if (x+y)%2==0:
      #t0query.append((2*(lx-ly)-1,1))
      #t0query.append((2*(rx-ry)+1,-1))
      s0query.append((2*(x+y),0))
    else:
      #t1query.append((2*(lx-ly)-1,1))
      #t1query.append((2*(rx-ry)+1,-1))
      s1query.append((2*(x+y),0))
    ans+=rx-lx+1

  if x-y not in t:
    t.add(x-y)
    lx,ly=1,1+y-x
    if ly<1:
      lx,ly=x-y+1,1
    rx,ry=m,m+y-x
    if ry>m:
      rx,ry=x-y+m,m
    if (x+y)%2==0:
      s0query.append((2*(lx+ly)-1,1))
      s0query.append((2*(rx+ry)+1,-1))
      #t0query.append((2*(x-y),0))
    else:
      s1query.append((2*(lx+ly)-1,1))
      s1query.append((2*(rx+ry)+1,-1))
      #t1query.append((2*(x-y),0))
    ans+=rx-lx+1

def calc(a):
  a.sort(key=lambda x:x[0])
  ans=0
  cnt=0
  for _,i in a:
    if i==1:
      cnt+=1
    if i==0:
      ans+=cnt
    if i==-1:
      cnt-=1
  return ans
#print(ans)
ans-=calc(s0query)
ans-=calc(s1query)
print(ans)
0