結果
問題 | No.743 Segments on a Polygon |
ユーザー | gazelle |
提出日時 | 2018-10-05 22:43:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 55 ms / 2,000 ms |
コード長 | 1,217 bytes |
コンパイル時間 | 2,626 ms |
コンパイル使用メモリ | 210,256 KB |
実行使用メモリ | 10,108 KB |
最終ジャッジ日時 | 2024-11-14 08:02:05 |
合計ジャッジ時間 | 3,471 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
9,856 KB |
testcase_01 | AC | 53 ms
8,780 KB |
testcase_02 | AC | 54 ms
10,108 KB |
testcase_03 | AC | 54 ms
9,080 KB |
testcase_04 | AC | 54 ms
9,980 KB |
testcase_05 | AC | 55 ms
9,212 KB |
testcase_06 | AC | 54 ms
9,004 KB |
testcase_07 | AC | 55 ms
9,848 KB |
testcase_08 | AC | 55 ms
9,472 KB |
testcase_09 | AC | 36 ms
8,832 KB |
ソースコード
#include<bits/stdc++.h> #include<random> using namespace std; using ll=long long; using ld=long double; using P=pair<ll,ll>; #define MOD 1000000007LL #define INF 1000000000LL #define EPS 1e-10 #define FOR(i,n,m) for(ll i=n;i<(ll)m;i++) #define REP(i,n) FOR(i,0,n) #define DUMP(a) REP(d,a.size()){cout<<a[d];if(d!=a.size()-1)cout<<" ";else cout<<endl;} #define ALL(v) v.begin(),v.end() #define UNIQUE(v) sort(ALL(v));v.erase(unique(ALL(v)),v.end()); #define pb push_back ll N = 200020; ll bit[200020]; void add(ll a, ll w) { a++; for (ll x = a; x <= N; x += x & -x) bit[x] += w; } ll sum(ll a) { a++; ll ret = 0; for (ll x = a; x > 0; x -= x & -x) ret += bit[x]; return ret; } void init() { for(ll i=0; i < N; i++) bit[i] = 0; } int main() { cin.tie(0); ios::sync_with_stdio(false); int n,m; cin>>n>>m; vector<int> a(n); vector<int> b(n); REP(i,n) cin>>a[i]>>b[i]; REP(i,n) if(a[i]>b[i]) swap(a[i],b[i]); vector<P> c; REP(i,n) c.pb(P(a[i],i)); REP(i,n) c.pb(P(b[i],i)); sort(ALL(c)); ll ans=0; REP(i,2*n) { if(a[c[i].second]==c[i].first) { add(c[i].first, 1); } else { ans+=sum(c[i].first); ans-=sum(a[c[i].second]); add(a[c[i].second],-1); } } cout<<ans<<endl; return 0; }