#include using namespace std; using ll = long long; constexpr int INF = (int)1e9 + 1001010; constexpr ll llINF = (ll)4e18 + 22000020; const string endn = "\n"; template inline vector> vector2(size_t i, size_t j, const T &init = T()) {return vector>(i, vector(j, init));} const string ELEM_SEPARATION = " ", VEC_SEPARATION = endn; template istream& operator >>(istream &i, vector &A) {for(auto &I : A) {i >> I;} return i;} template ostream& operator <<(ostream &o, const vector &A) {int i=A.size(); for(auto &I : A){o << I << (--i ? ELEM_SEPARATION : "");} return o;} template ostream& operator <<(ostream &o, const vector> &A) {int i=A.size(); for(auto &I : A){o << I << (--i ? VEC_SEPARATION : "");} return o;} template vector& operator ++(vector &A, int n) {for(auto &I : A) {I++;} return A;} template vector& operator --(vector &A, int n) {for(auto &I : A) {I--;} return A;} template bool chmax(T &a, const U &b) {return ((a < b) ? (a = b, true) : false);} template bool chmin(T &a, const U &b) {return ((a > b) ? (a = b, true) : false);} ll floor(ll a, ll b) {assert(b != 0); return((a%b != 0 && ((a>0) != (b>0))) ? a/b-1 : a/b);} ll ceil (ll a, ll b) {assert(b != 0); return((a%b != 0 && ((a>0) == (b>0))) ? a/b+1 : a/b);} // ================================== ここまでテンプレ ================================== // absが使える型に限る template T nearest_value(const vector &v, T key, bool prioritizeBig = true){ assert(v.size() > 0); if(v.size() == 1) return *v.begin(); auto lb = lower_bound(v.begin(), v.end(), key); if(lb == v.begin()) lb++; else if(lb == v.end()) lb--; T big = *lb; T small = *prev(lb); if(abs(big - key) < abs(small - key)) return big; else if(abs(big - key) > abs(small - key)) return small; else{ if(prioritizeBig) return big; else return small; } } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n, m; cin >> n >> m; vector l(n); cin >> l; ll ans = 0; for(int i = 0; i < m; i++){ ll f, b, w; cin >> f >> b >> w; ll cost = abs(nearest_value(l, f) - f); ans += max(b, w-cost); } cout << ans << endl; return 0; }