結果
問題 | No.2662 Installing Cell Towers |
ユーザー | 👑 Nachia |
提出日時 | 2024-03-06 15:41:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 989 bytes |
コンパイル時間 | 34 ms |
最終ジャッジ日時 | 2024-09-29 18:16:29 |
合計ジャッジ時間 | 582 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
31f89ffe5bd8 [/j_bin/judge_tool judge 0 30000 ../CompileMemory.txt /dev/null sud /dev/null _ g++-12 -I /boost_git/ -O2 -lm -Wuninitialized -DONLINE_JUDGE -o a.out main.cpp] open /home/yuki2006/gopath/src/yukicoder/judge/lang/lang.csv: no such file or directory goroutine 1 [running]: runtime/debug.Stack() /usr/local/go/src/runtime/debug/stack.go:24 +0x5e main.main.func1() /home/yuki2006/gopath/src/yukicoder/judge/main.go:20 +0x57 panic({0x7661e0?, 0xc000070b70?}) /usr/local/go/src/runtime/panic.go:770 +0x132 yukicoder/env.InitLangCommands(0x0) /home/yuki2006/gopath/src/yukicoder/env/lang.go:57 +0x3a5 main.main() /home/yuki2006/gopath/src/yukicoder/judge/main.go:42 +0x65
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <utility> #include <queue> #include <array> #include <cmath> using i64 = long long; using u64 = unsigned long long; #define rep(i,n) for(auto i=0LL; i<(long long)(n); i++) #define repr(i,n) for(auto i=(long long)(n)-1LL; i>=0LL; i--) using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); i64 N, M; cin >> N >> M; vector<i64> X(N+3); vector<i64> C(N+3); rep(i,M){ i64 p,q; cin >> p >> q; p--; i64 l = max<i64>(0, p-q+1); i64 r = min<i64>(N, p+q); i64 h1 = q - p; X[l] += 1; C[l] += h1; X[p] -= 1; C[p] -= h1; i64 h2 = q + p; X[p] -= 1; C[p] += h2; X[r] += 1; C[r] -= h2; } rep(i,N+2) X[i+1] += X[i]; rep(i,N+2) C[i+1] += C[i]; rep(i,N){ if(i) cout << ' '; cout << (X[i] * i + C[i]); } cout << '\n'; return 0; }