甜美路人

文章
5
资源
0
加入时间
3年1月13天

Codeforces Global Round 19 E. Best Pair

#include<bits/stdc++.h>using namespace std;// #define int long long const int N=3e5+10;int t,n,m,a[N];vector<int> v[N];unordered_map<int,int> mp;map<pair<int,int>,int> ban;bool cmp

mysql 触发器

创建触发器delimiter $$create trigger ins_filmafter insert on film for each row begininsert into film_text(id,title,description)  values(new.film_id,new.titile,new.description );end;$$delimite...