結果

問題 No.1194 Replace
ユーザー tailstails
提出日時 2020-09-14 18:42:11
言語 cLay
(20240714-1)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 187,020 KB
実行使用メモリ 38,784 KB
最終ジャッジ日時 2024-07-05 14:03:54
合計ジャッジ時間 13,272 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 374 ms
28,032 KB
testcase_01 AC 389 ms
29,696 KB
testcase_02 AC 291 ms
24,448 KB
testcase_03 AC 222 ms
21,504 KB
testcase_04 AC 398 ms
29,696 KB
testcase_05 AC 363 ms
27,776 KB
testcase_06 AC 317 ms
26,112 KB
testcase_07 AC 560 ms
38,656 KB
testcase_08 AC 550 ms
38,784 KB
testcase_09 AC 551 ms
38,784 KB
testcase_10 AC 542 ms
38,784 KB
testcase_11 AC 516 ms
38,784 KB
testcase_12 AC 518 ms
38,784 KB
testcase_13 AC 377 ms
23,168 KB
testcase_14 AC 296 ms
20,480 KB
testcase_15 AC 230 ms
18,560 KB
testcase_16 AC 332 ms
22,528 KB
testcase_17 AC 200 ms
17,536 KB
testcase_18 AC 214 ms
17,280 KB
testcase_19 AC 370 ms
22,912 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 73 ms
10,240 KB
testcase_24 AC 20 ms
6,016 KB
testcase_25 AC 9 ms
5,376 KB
testcase_26 AC 104 ms
11,392 KB
testcase_27 AC 14 ms
5,376 KB
testcase_28 AC 41 ms
7,296 KB
testcase_29 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

map<int,vector<int>>g;
map<int,int>v;
ll n,m,b,c,w,z;

void f(int i){
	REP[g[-i]](j,g[-i].size())
	if(j<w&&!v[j]++)z+=w-j,f(j);
}

{
	rd(n,m);
	rep(m)rd(b,c),g[-c].push_back(b);
	z=n*(n+1)/2;
	for(auto t:g)f(w=-t.first);
	wt(z);
}
0