結果

問題 No.5004 Room Assignment
ユーザー butsurizukibutsurizuki
提出日時 2021-11-29 04:03:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 583 bytes
コンパイル時間 6,160 ms
実行使用メモリ 269,560 KB
スコア 1,809,063
平均クエリ数 5125.83
最終ジャッジ日時 2021-11-30 23:52:51
合計ジャッジ時間 19,085 ms
ジャッジサーバーID
(参考情報)
judge10 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
22,164 KB
testcase_01 AC 113 ms
21,924 KB
testcase_02 WA -
testcase_03 AC 115 ms
22,044 KB
testcase_04 AC 113 ms
21,936 KB
testcase_05 AC 114 ms
21,936 KB
testcase_06 AC 117 ms
21,972 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 119 ms
22,208 KB
testcase_10 AC 119 ms
22,020 KB
testcase_11 AC 128 ms
22,124 KB
testcase_12 WA -
testcase_13 AC 121 ms
21,900 KB
testcase_14 WA -
testcase_15 AC 124 ms
21,936 KB
testcase_16 AC 120 ms
21,960 KB
testcase_17 AC 122 ms
21,944 KB
testcase_18 AC 121 ms
21,900 KB
testcase_19 AC 123 ms
21,912 KB
testcase_20 WA -
testcase_21 AC 120 ms
21,932 KB
testcase_22 AC 119 ms
21,984 KB
testcase_23 WA -
testcase_24 AC 121 ms
21,948 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 122 ms
22,044 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 119 ms
22,116 KB
testcase_32 AC 119 ms
21,900 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 25 ms
21,948 KB
testcase_36 WA -
testcase_37 AC 121 ms
21,960 KB
testcase_38 WA -
testcase_39 AC 120 ms
21,948 KB
testcase_40 WA -
testcase_41 AC 120 ms
21,792 KB
testcase_42 AC 120 ms
21,924 KB
testcase_43 AC 120 ms
21,972 KB
testcase_44 AC 121 ms
22,128 KB
testcase_45 AC 121 ms
21,972 KB
testcase_46 AC 119 ms
21,900 KB
testcase_47 AC 119 ms
21,936 KB
testcase_48 AC 119 ms
22,236 KB
testcase_49 WA -
testcase_50 AC 119 ms
21,912 KB
testcase_51 AC 119 ms
22,020 KB
testcase_52 AC 118 ms
22,140 KB
testcase_53 AC 118 ms
21,948 KB
testcase_54 AC 118 ms
21,924 KB
testcase_55 WA -
testcase_56 AC 116 ms
22,020 KB
testcase_57 AC 114 ms
22,356 KB
testcase_58 AC 125 ms
22,140 KB
testcase_59 AC 116 ms
21,924 KB
testcase_60 AC 119 ms
22,152 KB
testcase_61 AC 118 ms
22,104 KB
testcase_62 WA -
testcase_63 AC 121 ms
21,984 KB
testcase_64 AC 118 ms
21,996 KB
testcase_65 AC 118 ms
21,780 KB
testcase_66 AC 134 ms
21,936 KB
testcase_67 AC 117 ms
21,924 KB
testcase_68 AC 119 ms
22,152 KB
testcase_69 WA -
testcase_70 AC 113 ms
22,092 KB
testcase_71 WA -
testcase_72 AC 25 ms
21,900 KB
testcase_73 AC 120 ms
22,140 KB
testcase_74 AC 124 ms
21,972 KB
testcase_75 WA -
testcase_76 AC 118 ms
22,140 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 AC 119 ms
21,948 KB
testcase_81 AC 120 ms
21,912 KB
testcase_82 AC 120 ms
21,960 KB
testcase_83 AC 119 ms
21,972 KB
testcase_84 AC 123 ms
21,780 KB
testcase_85 AC 119 ms
22,224 KB
testcase_86 WA -
testcase_87 WA -
testcase_88 AC 118 ms
21,912 KB
testcase_89 AC 120 ms
21,960 KB
testcase_90 AC 120 ms
21,960 KB
testcase_91 WA -
testcase_92 WA -
testcase_93 AC 119 ms
22,092 KB
testcase_94 AC 120 ms
22,368 KB
testcase_95 AC 118 ms
22,080 KB
testcase_96 AC 119 ms
21,972 KB
testcase_97 AC 136 ms
21,960 KB
testcase_98 AC 121 ms
21,936 KB
testcase_99 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

int main(){
  int T,R;
  cin >> T >> R;
  int p=0,nxt=4;
  for(int i=0;i<T;i++){
    int n;
    cin >> n;
    if(i==0 && n==0){return 0;}
    for(int j=0;j<n;j++){
      int dum;
      cin >> dum;
    }
    p+=n;
    vector<pair<int,int>> vp;
    while(nxt<=p){
      vp.push_back({nxt-3,nxt-2});
      vp.push_back({nxt-2,nxt-1});
      vp.push_back({nxt-1,nxt});
      nxt+=4;
    }
    cout << vp.size() << '\n';
    for(auto &nx : vp){
      cout << nx.first << ' ' << nx.second << '\n';
    }
    fflush(stdout);
  }
  return 0;
}
0