結果

問題 No.1194 Replace
ユーザー tailstails
提出日時 2020-09-14 18:50:26
言語 cLay
(20240714-1)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 187,036 KB
実行使用メモリ 38,912 KB
最終ジャッジ日時 2024-07-05 14:06:55
合計ジャッジ時間 9,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 244 ms
28,928 KB
testcase_01 AC 260 ms
30,720 KB
testcase_02 AC 190 ms
25,472 KB
testcase_03 AC 148 ms
22,016 KB
testcase_04 AC 260 ms
30,592 KB
testcase_05 AC 225 ms
28,800 KB
testcase_06 AC 203 ms
27,008 KB
testcase_07 AC 349 ms
38,656 KB
testcase_08 AC 352 ms
38,784 KB
testcase_09 AC 366 ms
38,784 KB
testcase_10 AC 367 ms
38,784 KB
testcase_11 AC 348 ms
38,912 KB
testcase_12 AC 366 ms
38,784 KB
testcase_13 AC 261 ms
25,728 KB
testcase_14 AC 219 ms
23,040 KB
testcase_15 AC 154 ms
19,968 KB
testcase_16 AC 254 ms
25,088 KB
testcase_17 AC 150 ms
18,816 KB
testcase_18 AC 152 ms
19,200 KB
testcase_19 AC 235 ms
24,960 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 53 ms
10,752 KB
testcase_24 AC 15 ms
6,016 KB
testcase_25 AC 8 ms
5,376 KB
testcase_26 AC 78 ms
12,672 KB
testcase_27 AC 12 ms
5,376 KB
testcase_28 AC 33 ms
7,936 KB
testcase_29 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void f(int i){
	for(auto j:g[-i])
	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