fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. typedef long long ll;
  4.  
  5. int main(){
  6. ios::sync_with_stdio(false);
  7. cin.tie(nullptr);
  8.  
  9. int t;
  10. cin >> t;
  11. while(t--){
  12. int n;
  13. cin >> n;
  14. vector<int> a(n);
  15. int pivot = -1;
  16. for (int i = 0; i < n; i++){
  17. cin >> a[i];
  18. if(a[i] == 1) pivot = i; // 保證至少有一個 1
  19. }
  20.  
  21. vector<pair<int,int>> moves;
  22.  
  23. // 向左傳播:使得 0~pivot 的欄均變成 1
  24. for(int i = pivot - 1; i >= 0; i--){
  25. if(a[i] == 1) continue; // 已經固定為 1,不用動
  26. if(a[i] < 1){
  27. // a[i] == 0,鄰欄 a[i+1] 固定為 1
  28. // 允許的操作:從欄 (i+1) 向欄 i 轉移,輸出 1-索引為 (i+2, i+1)
  29. moves.push_back({i+2, i+1});
  30. } else {
  31. // a[i] == 2,鄰欄 a[i+1] 固定為 1
  32. // 允許操作:從欄 i 向欄 (i+1) 轉移,輸出 (i+1, i+2)
  33. moves.push_back({i+1, i+2});
  34. }
  35. a[i] = 1; // 模擬固定該欄為 1
  36. }
  37.  
  38. // 向右傳播:使得 pivot~(n-1) 的欄均變成 1
  39. for(int i = pivot + 1; i < n; i++){
  40. if(a[i] == 1) continue;
  41. if(a[i] < 1){
  42. // a[i] == 0,鄰欄 a[i-1] 固定為 1
  43. // 允許操作:從欄 (i-1) 向欄 i 轉移,輸出 (i, i+1)
  44. moves.push_back({i, i+1});
  45. } else {
  46. // a[i] == 2,鄰欄 a[i-1] 固定為 1
  47. // 允許操作:從欄 i 向欄 (i-1) 轉移,輸出 (i+1, i)
  48. moves.push_back({i+1, i});
  49. }
  50. a[i] = 1;
  51. }
  52.  
  53. // 輸出答案
  54. cout << moves.size() << "\n";
  55. for(auto &mv : moves){
  56. cout << mv.first << " " << mv.second << "\n";
  57. }
  58. }
  59.  
  60. return 0;
  61. }
Success #stdin #stdout 0.01s 5284KB
stdin
3
4
0 2 0 1
3
1 2 0
6
0 1 1 2 2 2
stdout
3
4 3
2 3
2 1
2
2 1
2 3
4
2 1
4 3
5 4
6 5