結果

問題 No.1290 Addition and Subtraction Operation
ユーザー kmjpkmjp
提出日時 2020-11-14 02:23:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 1,619 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 209,084 KB
実行使用メモリ 109,228 KB
最終ジャッジ日時 2024-07-22 22:38:44
合計ジャッジ時間 9,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
102,536 KB
testcase_01 AC 39 ms
102,748 KB
testcase_02 AC 38 ms
103,940 KB
testcase_03 AC 38 ms
102,568 KB
testcase_04 AC 38 ms
103,812 KB
testcase_05 AC 37 ms
99,012 KB
testcase_06 AC 38 ms
103,816 KB
testcase_07 AC 38 ms
102,692 KB
testcase_08 AC 38 ms
103,816 KB
testcase_09 AC 37 ms
102,984 KB
testcase_10 AC 37 ms
103,820 KB
testcase_11 AC 38 ms
103,812 KB
testcase_12 AC 37 ms
98,244 KB
testcase_13 AC 38 ms
102,272 KB
testcase_14 AC 38 ms
102,728 KB
testcase_15 AC 39 ms
102,900 KB
testcase_16 AC 38 ms
104,176 KB
testcase_17 AC 38 ms
104,072 KB
testcase_18 AC 38 ms
102,772 KB
testcase_19 AC 37 ms
102,728 KB
testcase_20 AC 37 ms
103,816 KB
testcase_21 AC 39 ms
104,008 KB
testcase_22 AC 38 ms
102,584 KB
testcase_23 AC 38 ms
103,808 KB
testcase_24 AC 37 ms
104,300 KB
testcase_25 AC 36 ms
98,632 KB
testcase_26 AC 37 ms
102,480 KB
testcase_27 AC 39 ms
103,936 KB
testcase_28 AC 39 ms
103,808 KB
testcase_29 AC 37 ms
103,808 KB
testcase_30 AC 38 ms
102,836 KB
testcase_31 AC 38 ms
102,492 KB
testcase_32 AC 36 ms
99,652 KB
testcase_33 AC 38 ms
103,888 KB
testcase_34 AC 39 ms
102,452 KB
testcase_35 AC 38 ms
104,072 KB
testcase_36 AC 38 ms
102,860 KB
testcase_37 AC 38 ms
103,944 KB
testcase_38 AC 38 ms
103,052 KB
testcase_39 AC 38 ms
103,804 KB
testcase_40 AC 38 ms
102,772 KB
testcase_41 AC 36 ms
99,784 KB
testcase_42 AC 67 ms
107,144 KB
testcase_43 AC 67 ms
107,012 KB
testcase_44 AC 68 ms
107,264 KB
testcase_45 AC 68 ms
107,188 KB
testcase_46 AC 67 ms
107,164 KB
testcase_47 AC 68 ms
107,092 KB
testcase_48 AC 67 ms
108,492 KB
testcase_49 AC 67 ms
108,492 KB
testcase_50 AC 68 ms
108,616 KB
testcase_51 AC 68 ms
107,804 KB
testcase_52 AC 68 ms
108,492 KB
testcase_53 AC 67 ms
107,952 KB
testcase_54 AC 67 ms
108,616 KB
testcase_55 AC 68 ms
107,076 KB
testcase_56 AC 68 ms
108,488 KB
testcase_57 AC 55 ms
100,032 KB
testcase_58 AC 62 ms
100,928 KB
testcase_59 AC 53 ms
104,900 KB
testcase_60 AC 89 ms
108,120 KB
testcase_61 AC 76 ms
106,908 KB
testcase_62 AC 80 ms
107,152 KB
testcase_63 AC 62 ms
106,268 KB
testcase_64 AC 44 ms
100,040 KB
testcase_65 AC 50 ms
99,648 KB
testcase_66 AC 68 ms
101,448 KB
testcase_67 AC 91 ms
108,652 KB
testcase_68 AC 76 ms
103,748 KB
testcase_69 AC 63 ms
105,368 KB
testcase_70 AC 57 ms
105,832 KB
testcase_71 AC 67 ms
105,716 KB
testcase_72 AC 50 ms
100,548 KB
testcase_73 AC 71 ms
107,008 KB
testcase_74 AC 43 ms
99,652 KB
testcase_75 AC 48 ms
99,652 KB
testcase_76 AC 60 ms
105,676 KB
testcase_77 AC 104 ms
107,968 KB
testcase_78 AC 93 ms
107,580 KB
testcase_79 AC 68 ms
106,464 KB
testcase_80 AC 122 ms
109,228 KB
testcase_81 AC 118 ms
108,448 KB
testcase_82 AC 70 ms
107,188 KB
testcase_83 AC 88 ms
108,872 KB
testcase_84 AC 86 ms
107,972 KB
testcase_85 AC 56 ms
105,144 KB
testcase_86 AC 49 ms
105,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,M;
ll B[101010];
set<int> R[2020202];

template<class V, int ME> class BIT {
public:
	V bit[1<<ME];
	V operator()(int e) {if(e<0) return 0;V s=0;e++;while(e) s+=bit[e-1],e-=e&-e; return s;}
	void add(int e,V v) { e++; while(e<=1<<ME) bit[e-1]+=v,e+=e&-e;}
};
BIT<ll,20> bt;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M;
	FOR(i,N) cin>>B[i];
	FOR(i,M) {
		cin>>x>>y;
		R[x-1].insert(y);
	}
	FOR(i,N) {
		if(R[i].size()) {
			x=*R[i].begin();
			R[i].erase(R[i].begin());
			if(R[x].size()<R[i].size()) swap(R[i],R[x]);
			FORR(v,R[i]) R[x].insert(v);
			R[i].clear();
			ll v=bt(i);
			if(i%2==0) {
				ll d=B[i]-v;
				bt.add(i,d);
				bt.add(x,-d);
			}
			else {
				ll d=B[i]-(-v);
				bt.add(i,-d);
				bt.add(x,d);
			}
		}
		if(i%2==0&&bt(i)!=B[i]) {
			cout<<"NO"<<endl;
			return;
		}
		if(i%2==1&&bt(i)!=-B[i]) {
			cout<<"NO"<<endl;
			return;
		}
	}
	cout<<"YES"<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0