結果

問題 No.1290 Addition and Subtraction Operation
ユーザー tailstails
提出日時 2020-11-13 23:16:38
言語 cLay
(20240714-1)
結果
AC  
実行時間 559 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 2,383 ms
コンパイル使用メモリ 176,696 KB
実行使用メモリ 442,948 KB
最終ジャッジ日時 2024-07-05 14:46:48
合計ジャッジ時間 8,203 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,496 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
7,492 KB
testcase_03 AC 3 ms
7,624 KB
testcase_04 AC 3 ms
7,500 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
7,624 KB
testcase_07 AC 3 ms
7,492 KB
testcase_08 AC 3 ms
7,500 KB
testcase_09 AC 3 ms
7,364 KB
testcase_10 AC 3 ms
7,368 KB
testcase_11 AC 3 ms
7,492 KB
testcase_12 AC 3 ms
7,620 KB
testcase_13 AC 3 ms
7,496 KB
testcase_14 AC 3 ms
7,492 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 3 ms
7,492 KB
testcase_17 AC 3 ms
7,620 KB
testcase_18 AC 3 ms
7,492 KB
testcase_19 AC 2 ms
7,492 KB
testcase_20 AC 3 ms
7,492 KB
testcase_21 AC 3 ms
7,488 KB
testcase_22 AC 3 ms
7,616 KB
testcase_23 AC 3 ms
7,492 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 3 ms
7,496 KB
testcase_26 AC 3 ms
7,496 KB
testcase_27 AC 3 ms
7,496 KB
testcase_28 AC 3 ms
7,492 KB
testcase_29 AC 3 ms
7,620 KB
testcase_30 AC 3 ms
7,496 KB
testcase_31 AC 4 ms
7,696 KB
testcase_32 AC 3 ms
7,488 KB
testcase_33 AC 3 ms
7,364 KB
testcase_34 AC 3 ms
7,492 KB
testcase_35 AC 3 ms
7,364 KB
testcase_36 AC 3 ms
7,492 KB
testcase_37 AC 3 ms
7,368 KB
testcase_38 AC 3 ms
7,500 KB
testcase_39 AC 3 ms
7,620 KB
testcase_40 AC 3 ms
7,496 KB
testcase_41 AC 3 ms
7,488 KB
testcase_42 AC 144 ms
123,664 KB
testcase_43 AC 143 ms
125,016 KB
testcase_44 AC 144 ms
125,364 KB
testcase_45 AC 146 ms
123,716 KB
testcase_46 AC 147 ms
124,876 KB
testcase_47 AC 144 ms
125,364 KB
testcase_48 AC 144 ms
124,768 KB
testcase_49 AC 142 ms
124,872 KB
testcase_50 AC 144 ms
124,976 KB
testcase_51 AC 144 ms
124,944 KB
testcase_52 AC 145 ms
125,368 KB
testcase_53 AC 145 ms
124,652 KB
testcase_54 AC 145 ms
125,240 KB
testcase_55 AC 146 ms
124,848 KB
testcase_56 AC 139 ms
124,888 KB
testcase_57 AC 8 ms
9,192 KB
testcase_58 AC 10 ms
9,152 KB
testcase_59 AC 7 ms
8,772 KB
testcase_60 AC 17 ms
10,440 KB
testcase_61 AC 13 ms
9,928 KB
testcase_62 AC 14 ms
9,380 KB
testcase_63 AC 9 ms
9,160 KB
testcase_64 AC 4 ms
7,880 KB
testcase_65 AC 6 ms
8,264 KB
testcase_66 AC 12 ms
9,668 KB
testcase_67 AC 18 ms
10,436 KB
testcase_68 AC 13 ms
10,024 KB
testcase_69 AC 10 ms
8,336 KB
testcase_70 AC 9 ms
9,356 KB
testcase_71 AC 11 ms
9,540 KB
testcase_72 AC 6 ms
7,476 KB
testcase_73 AC 12 ms
9,796 KB
testcase_74 AC 6 ms
6,940 KB
testcase_75 AC 6 ms
8,136 KB
testcase_76 AC 9 ms
8,312 KB
testcase_77 AC 114 ms
85,832 KB
testcase_78 AC 37 ms
22,724 KB
testcase_79 AC 12 ms
9,676 KB
testcase_80 AC 559 ms
442,948 KB
testcase_81 AC 498 ms
402,888 KB
testcase_82 AC 12 ms
10,308 KB
testcase_83 AC 17 ms
10,944 KB
testcase_84 AC 17 ms
10,824 KB
testcase_85 AC 8 ms
9,288 KB
testcase_86 AC 6 ms
8,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

vector<ll> v[1d5+1];

ll bs[1d5];
ll ad,as[1d5+1];

{
	int @n,@m;
	rd(bs(n));
	rep(m){
		ll @l,@r;
		v[l-1].push_back(r);
	}
	rep(i,0,n,2)bs[i]=-bs[i];
	rep(x,n){
		ad+=as[x];
		if(v[x].empty()){
			if(bs[x]!=ad){
				wt("NO");
				exit(0);
			}
			continue;
		}
		int r=v[x][0];
		rep(y,1,v[x].size()){
			int r2=v[x][y];
			if(r>r2) swap(r,r2);
			if(r!=r2) v[r].push_back(r2);
		}
		v[x].clear();
		as[r]-=bs[x]-ad;
		ad=bs[x];
	}
	wt("YES");
}
0