結果

問題 No.2740 Old Maid
ユーザー 👑 p-adicp-adic
提出日時 2024-04-21 19:59:02
言語 cLay
(20240714-1)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 3,021 ms
コンパイル使用メモリ 190,824 KB
実行使用メモリ 36,736 KB
最終ジャッジ日時 2024-10-13 18:41:17
合計ジャッジ時間 12,372 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
36,608 KB
testcase_01 AC 185 ms
36,480 KB
testcase_02 AC 188 ms
36,608 KB
testcase_03 AC 183 ms
36,480 KB
testcase_04 AC 185 ms
36,608 KB
testcase_05 AC 179 ms
36,608 KB
testcase_06 AC 184 ms
36,608 KB
testcase_07 AC 187 ms
36,608 KB
testcase_08 AC 184 ms
36,608 KB
testcase_09 AC 180 ms
36,608 KB
testcase_10 AC 175 ms
36,736 KB
testcase_11 AC 181 ms
36,480 KB
testcase_12 AC 253 ms
26,752 KB
testcase_13 AC 287 ms
28,544 KB
testcase_14 AC 39 ms
8,832 KB
testcase_15 AC 59 ms
10,752 KB
testcase_16 AC 179 ms
21,504 KB
testcase_17 AC 36 ms
8,576 KB
testcase_18 AC 271 ms
27,520 KB
testcase_19 AC 90 ms
13,696 KB
testcase_20 AC 340 ms
31,744 KB
testcase_21 AC 44 ms
9,472 KB
testcase_22 AC 180 ms
20,736 KB
testcase_23 AC 28 ms
7,296 KB
testcase_24 AC 93 ms
13,056 KB
testcase_25 AC 347 ms
33,152 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 18 ms
6,016 KB
testcase_28 AC 198 ms
21,248 KB
testcase_29 AC 178 ms
20,352 KB
testcase_30 AC 6 ms
5,248 KB
testcase_31 AC 418 ms
35,840 KB
testcase_32 AC 99 ms
14,848 KB
testcase_33 AC 392 ms
34,304 KB
testcase_34 AC 161 ms
20,096 KB
testcase_35 AC 83 ms
12,928 KB
testcase_36 AC 83 ms
13,312 KB
testcase_37 AC 128 ms
17,152 KB
testcase_38 AC 70 ms
11,904 KB
testcase_39 AC 35 ms
8,064 KB
testcase_40 AC 234 ms
24,704 KB
testcase_41 AC 334 ms
31,488 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 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 1 ms
5,248 KB
testcase_48 AC 1 ms
5,248 KB
testcase_49 AC 1 ms
5,248 KB
testcase_50 AC 1 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 1 ms
5,248 KB
testcase_54 AC 1 ms
5,248 KB
testcase_55 AC 1 ms
5,248 KB
testcase_56 AC 1 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
testcase_58 AC 1 ms
5,248 KB
testcase_59 AC 1 ms
5,248 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 1 ms
5,248 KB
testcase_62 AC 1 ms
5,248 KB
testcase_63 AC 1 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:115:18: warning: narrowing conversion of ‘p[i]’ from ‘long long int’ to ‘int’ [-Wnarrowing]
  115 |     S.insert({p[i],i});
      |               ~~~^
main.cpp:115:18: warning: narrowing conversion of ‘p[i]’ from ‘long long int’ to ‘int’ [-Wnarrowing]
main.cpp:123:22: warning: narrowing conversion of ‘(q[((2 * n) + 1)] = p[t])’ from ‘long long int’ to ‘int’ [-Wnarrowing]
  123 |     S.erase({q[2*n+1]=p[t],t});
      |              ~~~~~~~~^~~~~
main.cpp:123:22: warning: narrowing conversion of ‘(q[((2 * n) + 1)] = p[t])’ from ‘long long int’ to ‘int’ [-Wnarrowing]
main.cpp:123:28: warning: narrowing conversion of ‘t’ from ‘long long int’ to ‘int’ [-Wnarrowing]
  123 |     S.erase({q[2*n+1]=p[t],t});
      |                            ^
main.cpp:123:28: warning: narrowing conversion of ‘t’ from ‘long long int’ to ‘int’ [-Wnarrowing]

ソースコード

diff #

ll@N,@p[N],q[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({q[2n+1]=p[t],t});q[2n]=p[s];}wt(q(N));
0