結果

問題 No.5010 Better Mo's Algorithm is Needed!! (Unweighted)
ユーザー ansainansain
提出日時 2022-12-17 15:00:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 640 ms / 5,000 ms
コード長 1,622 bytes
コンパイル時間 252 ms
実行使用メモリ 154,708 KB
スコア 10,118,330,726
最終ジャッジ日時 2022-12-17 15:02:55
合計ジャッジ時間 121,277 ms
ジャッジサーバーID
(参考情報)
judge15 / judge16
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 120
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict, Counter, deque
from itertools import permutations, combinations, product, combinations_with_replacement, groupby, accumulate
import operator
from math import sqrt, gcd, factorial, ceil
#from math import isqrt, prod, comb  #python3.8用(notpypy)
#from bisect import bisect_left, bisect_right
#from functools import lru_cache, reduce
#from heapq import heappush, heappop, heapify, heappushpop, heapreplace
#import numpy as np
#import networkx as nx
#from networkx.utils import UnionFind
#from numba import njit, b1, i1, i4, i8, f8
#numba例 @njit(i1(i4[:], i8[:, :]),cache=True) 引数i4配列、i8 2次元配列,戻り値i1
#from scipy.sparse import csr_matrix
#from scipy.sparse.csgraph import shortest_path, floyd_warshall, dijkstra, bellman_ford, johnson, NegativeCycleError, maximum_bipartite_matching, maximum_flow, minimum_spanning_tree
def input(): return sys.stdin.readline().rstrip()
def divceil(n, k): return 1+(n-1)//k  # n/kの切り上げを返す
def yn(hantei, yes='Yes', no='No'): print(yes if hantei else no)


def main():
    mod = 10**9+7
    mod2 = 998244353
    n,q,wt,st=map(int, input().split())
    w=list(map(int, input().split()))
    lr=[list(map(int, input().split())) + [i+1] for i in range(q)]
    b = ceil(sqrt(q))
    bucket = [list() for _ in range(b + 1)]
    for l,r,i in lr:
        bucket[l // b].append((l, r, i))
    for i in range(len(bucket)):
        bucket[i].sort(key=operator.itemgetter(1))
    ans=[]
    for b in bucket:
        for l,r,i in b:
            ans.append(i)
    print(*ans)




if __name__ == '__main__':
    main()
0