ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1313. Some Words about Sport

Acces Violation test #4 and after that get WA #4, C++. Anyone can help me? still stuck test #4
Posted by VNeo 15 Jul 2017 10:56
first i get acces violation in my code. and then i search what it acces violation, and then i remake my code, then submit again. still get WA #4, before i reamke the code it says Accces Violation in test #4. Can anybody help me?

This is my code.

#include <iostream>
using namespace std;

int n,ar[10000],p;

int main(){
    cin>>n;
    for (int i=1;i<=n*n;i++){
        cin>>p;
        ar[p]=p;
    }
    for (int i=1;i<=n*n;i++){cout<<ar[i]<<' ';}
}

Edited by author 15.07.2017 10:58
Re: Acces Violation test #4 and after that get WA #4, C++. Anyone can help me? still stuck test #4
Posted by VNeo 15 Jul 2017 10:59
Or I must use Array 2 dimensions?
Re: Acces Violation test #4 and after that get WA #4, C++. Anyone can help me? still stuck test #4
Posted by Mahilewets 15 Jul 2017 11:34
http://ideone.com/8vvdve
If you don't want runtime error #4 pay attention arrays in C/C++ are 0-indexing and enlarge your array by one for example

If you want AC you can AC even with one-d array


To do that you should write much more smart program than yours
Re: Acces Violation test #4 and after that get WA #4, C++. Anyone can help me? still stuck test #4
Posted by VNeo 15 Jul 2017 13:03
understood. thnks dude.

Edited by author 15.07.2017 13:05

Edited by author 15.07.2017 13:05