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

Show all messages Hide all messages

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
Or I must use Array 2 dimensions?
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
understood. thnks dude.

Edited by author 15.07.2017 13:05

Edited by author 15.07.2017 13:05