import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); TreeMap compress = new TreeMap<>(); int[] lefts = new int[m]; int[] rights = new int[m]; compress.put(1, null); compress.put(n, null); for (int i = 0; i < m; i++) { lefts[i] = sc.nextInt(); rights[i] = sc.nextInt(); compress.put(lefts[i], null); compress.put(rights[i], null); } List> graph = new ArrayList<>(); for (int i = 0; i < compress.size(); i++) { graph.add(new ArrayList<>()); } int prev = -1; int idx = 0; for (int x : compress.keySet()) { compress.put(x, idx); if (prev >= 1) { graph.get(idx - 1).add(new Path(idx, (x - prev) * 2)); } idx++; prev = x; } for (int i = 0; i < m; i++) { graph.get(compress.get(lefts[i])).add(new Path(compress.get(rights[i]), (rights[i] - lefts[i]) * 2 - 1)); } int[] costs = new int[idx]; Arrays.fill(costs, Integer.MAX_VALUE); PriorityQueue queue = new PriorityQueue<>(); queue.add(new Path(0, 0)); while (queue.size() > 0) { Path p = queue.poll(); if (costs[p.idx] <= p.value) { continue; } costs[p.idx] = p.value; for (Path x : graph.get(p.idx)) { queue.add(new Path(x.idx, x.value + p.value)); } } System.out.println(costs[idx - 1]); } static class Path implements Comparable { int idx; int value; public Path(int idx, int value) { this.idx = idx; this.value = value; } public int compareTo(Path another) { return value - another.value; } } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }