結果

問題 No.2740 Old Maid
ユーザー 👑 p-adicp-adic
提出日時 2024-04-21 20:01:24
言語 cLay
(20240714-1)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 2,720 ms
コンパイル使用メモリ 189,980 KB
実行使用メモリ 35,072 KB
最終ジャッジ日時 2024-10-13 18:43:04
合計ジャッジ時間 12,866 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
34,944 KB
testcase_01 AC 180 ms
35,072 KB
testcase_02 AC 184 ms
35,072 KB
testcase_03 AC 184 ms
35,072 KB
testcase_04 AC 186 ms
34,816 KB
testcase_05 AC 188 ms
35,072 KB
testcase_06 AC 184 ms
34,944 KB
testcase_07 AC 185 ms
35,072 KB
testcase_08 AC 183 ms
35,072 KB
testcase_09 AC 184 ms
34,944 KB
testcase_10 AC 178 ms
35,072 KB
testcase_11 AC 186 ms
35,072 KB
testcase_12 AC 278 ms
25,728 KB
testcase_13 AC 312 ms
27,392 KB
testcase_14 AC 39 ms
8,448 KB
testcase_15 AC 57 ms
10,368 KB
testcase_16 AC 194 ms
20,608 KB
testcase_17 AC 38 ms
8,192 KB
testcase_18 AC 288 ms
26,496 KB
testcase_19 AC 93 ms
13,056 KB
testcase_20 AC 348 ms
30,336 KB
testcase_21 AC 48 ms
9,216 KB
testcase_22 AC 182 ms
20,096 KB
testcase_23 AC 26 ms
7,040 KB
testcase_24 AC 84 ms
12,672 KB
testcase_25 AC 379 ms
31,744 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 18 ms
5,888 KB
testcase_28 AC 187 ms
20,480 KB
testcase_29 AC 181 ms
19,584 KB
testcase_30 AC 6 ms
5,248 KB
testcase_31 AC 425 ms
34,432 KB
testcase_32 AC 104 ms
14,208 KB
testcase_33 AC 395 ms
32,768 KB
testcase_34 AC 173 ms
19,328 KB
testcase_35 AC 81 ms
12,416 KB
testcase_36 AC 92 ms
13,056 KB
testcase_37 AC 136 ms
16,768 KB
testcase_38 AC 76 ms
11,520 KB
testcase_39 AC 35 ms
7,680 KB
testcase_40 AC 239 ms
23,552 KB
testcase_41 AC 346 ms
29,952 KB
testcase_42 AC 1 ms
5,248 KB
testcase_43 AC 1 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 1 ms
5,248 KB
testcase_46 AC 1 ms
5,248 KB
testcase_47 AC 1 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 1 ms
5,248 KB
testcase_53 AC 2 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 1 ms
5,248 KB
testcase_57 AC 1 ms
5,248 KB
testcase_58 AC 2 ms
5,248 KB
testcase_59 AC 1 ms
5,248 KB
testcase_60 AC 1 ms
5,248 KB
testcase_61 AC 1 ms
5,248 KB
testcase_62 AC 1 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:114:18: warning: narrowing conversion of ‘p[i]’ from ‘long long int’ to ‘int’ [-Wnarrowing]
  114 |     S.insert({p[i],i});
      |               ~~~^
main.cpp:114:18: warning: narrowing conversion of ‘p[i]’ from ‘long long int’ to ‘int’ [-Wnarrowing]
main.cpp:122:17: warning: narrowing conversion of ‘p[t]’ from ‘long long int’ to ‘int’ [-Wnarrowing]
  122 |     S.erase({p[t],t});
      |              ~~~^
main.cpp:122:17: warning: narrowing conversion of ‘p[t]’ from ‘long long int’ to ‘int’ [-Wnarrowing]
main.cpp:122:19: warning: narrowing conversion of ‘t’ from ‘long long int’ to ‘int’ [-Wnarrowing]
  122 |     S.erase({p[t],t});
      |                   ^
main.cpp:122:19: warning: narrowing conversion of ‘t’ from ‘long long int’ to ‘int’ [-Wnarrowing]

ソースコード

diff #

ll@N,@p[N],s,t;set<ll>I;set<VI>S;rep(i,N)I.insert(i),S.insert({p[i],i});rep(n,N/2){auto j=S.begin();(*j)[1]<*I.rbegin()?j:++j;I.erase(s=(*j)[1]);I.erase(t=*I.upper_bound(s));S.erase(j);S.erase({p[t],t});wtSp(p[s],p[t]);}
0