結果
| 問題 |
No.2662 Installing Cell Towers
|
| ユーザー |
|
| 提出日時 | 2023-03-04 16:06:36 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,151 bytes |
| コンパイル時間 | 2,072 ms |
| コンパイル使用メモリ | 194,860 KB |
| 最終ジャッジ日時 | 2025-02-11 05:17:55 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 WA * 6 |
ソースコード
#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(),(x).end()
#define fix(x) fixed << setprecision(x)
#define eb emplace_back
constexpr char nl='\n';
using namespace std;
using ll = long long;
using ld = long double;
using vl = vector<long long>;
using vvl = vector<vector<long long>>;
using vs = vector<string>;
using pl = pair<long long, long long>;
template <typename T> inline bool chmin(T& a, const T& b) {bool compare = a > b; if (a > b) a = b; return compare;}
template <typename T> inline bool chmax(T& a, const T& b) {bool compare = a < b; if (a < b) a = b; return compare;}
template<class T>using rp_queue=priority_queue<T,vector<T>,greater<T>>;
void fast_io(){cin.tie(nullptr);ios_base::sync_with_stdio(false);}
template <typename T> T gcd(T a, T b) {if (b == 0)return a; else return gcd(b, a % b);}
template <typename T> inline T lcm(T a, T b) {return a /gcd(a, b)*b;}
const ld PI = acos(-1);
void solve(){
int N,M;cin>>N>>M;
vl ans(N+2),S(N+2);
//これを区間加算を使って高速化する
while(M--){
ll p,q;cin>>p>>q;
//pによって2つの区間に分けられる
//[1,p)
ll a=q-p;
//aによって2つの区間に分けられる
if(a<=0){
//区間[abs(a),p)までに処理を行う
ans[abs(a)]+=a;
ans[p]-=a;
S[abs(a)]++;
S[p]--;
}else{
ans[1]+=a;
ans[p]-=a;
S[1]++;
S[p]--;
}
//[p,N+1)
ll b=q+p;
//bによってさらに2つの区間に分けられる
if(b-p>=0){
//全ての区間に対して適用する
ans[p]+=b;
ans[min<ll>(b,N+1)]-=b;
S[p]--;
S[min<ll>(b,N+1)]++;
}else{
//[p,b) + [b,N+1)
ans[p]+=b;
ans[N+1]-=b;
S[p]--;
S[N+1]++;
}
}
for(int i=1;i<=N;i++)S[i+1]+=S[i];
for(int i=1;i<=N;i++)ans[i+1]+=ans[i];
for(ll i=1;i<=N;i++){
ans[i]+=(S[i])*i;
}
for(int i=1;i<=N;i++){
cout<<ans[i]<<" ";
}
cout<<endl;
}
int main(){
fast_io();
int num_tc = 1;
//cin >> num_tc;
rep(tc,num_tc){
//cout << "Case #" << tc+1 << ": " ;// << endl;
solve();
}
}