-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path1260.Shift2DGrid.py
71 lines (60 loc) · 1.84 KB
/
1260.Shift2DGrid.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
'''
Given a 2D grid of size m x n and an integer k. You need
to shift the grid k times.
In one shift operation:
- Element at grid[i][j] moves to grid[i][j + 1].
- Element at grid[i][n - 1] moves to grid[i + 1][0].
- Element at grid[m - 1][n - 1] moves to grid[0][0].
Return the 2D grid after applying shift operation k times.
Example:
Input: grid = [[1,2,3],[4,5,6],[7,8,9]], k = 1
Output: [[9,1,2],[3,4,5],[6,7,8]]
Example:
Input: grid = [[3,8,1,9],
[19,7,2,5],
[4,6,11,10],
[12,0,21,13]],
k = 4
Output: [[12,0,21,13],
[3,8,1,9],
[19,7,2,5],
[4,6,11,10]]
Example:
Input: grid = [[1,2,3],
[4,5,6],
[7,8,9]],
k = 9
Output: [[1,2,3],
[4,5,6],
[7,8,9]]
Constraints:
- m == grid.length
- n == grid[i].length
- 1 <= m <= 50
- 1 <= n <= 50
- -1000 <= grid[i][j] <= 1000
- 0 <= k <= 100
'''
#Difficulty: Easy
#107 / 107 test cases passed.
#Runtime: 148 ms
#Memory Usage: 14.8 MB
#Runtime: 148 ms, faster than 95.38% of Python3 online submissions for Shift 2D Grid.
#Memory Usage: 14.8 MB, less than 14.07% of Python3 online submissions for Shift 2D Grid.
class Solution:
def shiftGrid(self, grid: List[List[int]], k: int) -> List[List[int]]:
j = 0
cols = len(grid[0])
rows = len(grid)
k %= cols*rows # if k > matrix length
vector = []
# construct vector
for row in grid:
vector.extend(row)
# shift values
vector = vector[-k:] + vector[:-k]
#re construct matrix
for i in range(rows):
grid[i] = vector[j:j+cols]
j += cols
return grid