# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
568252 | almothana05 | Restore Array (RMI19_restore) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define mod 1000000007
#define inf 10000000000000000
using namespace std;
// vector<pair<int , int> >gr[2000000];
long long dist[2000000] ;
// priority_queue<pair<int , int> >q;
vector<int>edge[3];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int menge , numm , nummer , que , cmp , bi;
cin >> menge >> que;
for(int i = 0 ; i < menge; i++){
edge[0].push_back(i);
edge[1].push_back(i + 1);
edge[2].push_back(1);
edge[0].push_back(i + 1);
edge[1].push_back(i);
edge[2].push_back(0);
}
while(que--){
cin >> numm >> nummer >> cmp >> bi;
// numm++;
nummer++;
if(bi == 0){
cmp = nummer - numm - cmp;
edge[0].push_back(numm);
edge[1].push_back(nummer);
edge[2].push_back(cmp);
}
else{
cmp = nummer - numm - cmp + 1;
cmp *= -1;
edge[0].push_back(nummer);
edge[1].push_back(numm);
edge[2].push_back(cmp);
}
}
for(int i = 0 ; i < 20000 ; i++){
dist[i] = inf;
}
dist[0] = 0;
for(int k = 0 ; k < menge ; k++){
for(int i = 0 ; i < edge.size() ; i++){
if(dist[edge[0][i]] != inf && dist[edge[0][i]] + edge[2][i] < dist[edge[1][i]]){
dist[edge[1][i]] = dist[edge[0][i]] + edge[2][i];
}
}
}
for(int i = 0 ; i < edge.size() ; i++){
if(dist[edge[0][i]] != inf && dist[edge[0][i]] + edge[2][i] < dist[edge[1][i]]){
cout << -1 << "\n";
return 0;
}
}
for(int i = 0 ; i < menge ; i++){
// cout << dist[i] << "\n";
if(dist[i] == dist[i + 1]){
cout << 0 << ' ';
}
else{
cout << 1 << ' ';
}
}
}